diff --git a/build.sbt b/build.sbt index a10088c..945de68 100644 --- a/build.sbt +++ b/build.sbt @@ -2,7 +2,7 @@ name := """avatax-rest-v2-api-java""" organization := "net.avalara.avatax" -version := "24.11.2" +version := "24.12.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 c5ec81b..64e72c0 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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.12.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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.12.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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.12.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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.12.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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.12.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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.12.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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"24.12.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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"24.12.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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -695,7 +695,7 @@ public Future> getLicenseKeysAsync(Integer id) */ public FetchResult listMrsAccounts() throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/accounts/mrs"); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -714,7 +714,7 @@ public FetchResult listMrsAccounts() throws Exception { */ public Future> listMrsAccountsAsync() { AvaTaxPath path = new AvaTaxPath("/api/v2/accounts/mrs"); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -752,7 +752,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -790,7 +790,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -821,7 +821,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"24.12.0")).call(); } /** @@ -852,7 +852,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"24.12.0")); } /** @@ -898,7 +898,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")).call(); } /** @@ -944,7 +944,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")); } /** @@ -970,7 +970,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.12.0")).call(); } /** @@ -996,7 +996,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.12.0")); } /** @@ -1010,7 +1010,7 @@ public Future resolveAddressPostAsync(AddressValidationI public APConfigSettingSuccessResponseModel createAPConfigSetting(Integer companyid, APConfigSettingRequestModel model) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyid}/apconfigsetting"); path.applyField("companyid", companyid); - return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.12.0")).call(); } /** @@ -1024,7 +1024,7 @@ public APConfigSettingSuccessResponseModel createAPConfigSetting(Integer company public Future createAPConfigSettingAsync(Integer companyid, APConfigSettingRequestModel model) { AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyid}/apconfigsetting"); path.applyField("companyid", companyid); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.12.0")); } /** @@ -1047,7 +1047,7 @@ public FetchResult getAPConfigSettingByComp path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -1070,7 +1070,7 @@ public Future> getAPConfigSetti path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -1091,7 +1091,7 @@ public FetchResult queryAPConfigSetting(Str path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -1112,7 +1112,7 @@ public Future> queryAPConfigSet path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -1126,7 +1126,7 @@ public Future> queryAPConfigSet public APConfigSettingSuccessResponseModel updateAPConfigSetting(Integer companyid, APConfigSettingRequestModel model) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyid}/apconfigsetting"); path.applyField("companyid", companyid); - return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"24.12.0")).call(); } /** @@ -1140,7 +1140,7 @@ public APConfigSettingSuccessResponseModel updateAPConfigSetting(Integer company public Future updateAPConfigSettingAsync(Integer companyid, APConfigSettingRequestModel model) { AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyid}/apconfigsetting"); path.applyField("companyid", companyid); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"24.12.0")); } /** @@ -1160,7 +1160,7 @@ public Future updateAPConfigSettingAsync(In */ public ArrayList createAvaFileForms(ArrayList model) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/avafileforms"); - return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"24.12.0")).call(); } /** @@ -1180,7 +1180,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"24.12.0")); } /** @@ -1200,7 +1200,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -1220,7 +1220,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -1240,7 +1240,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")).call(); } /** @@ -1260,7 +1260,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")); } /** @@ -1287,7 +1287,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -1314,7 +1314,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -1336,7 +1336,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"24.12.0")).call(); } /** @@ -1358,7 +1358,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"24.12.0")); } /** @@ -1390,7 +1390,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, null, new TypeToken(){},"24.12.0")).call(); } /** @@ -1422,7 +1422,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, null, new TypeToken(){},"24.12.0")); } /** @@ -1460,7 +1460,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"24.12.0")).call(); } /** @@ -1498,7 +1498,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"24.12.0")); } /** @@ -1534,7 +1534,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.12.0")).call(); } /** @@ -1570,7 +1570,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.12.0")); } /** @@ -1600,7 +1600,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -1630,7 +1630,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -1653,7 +1653,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")).call(); } /** @@ -1676,7 +1676,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")); } /** @@ -1711,7 +1711,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")).call(); } /** @@ -1746,7 +1746,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")); } /** @@ -1795,7 +1795,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -1844,7 +1844,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -1888,7 +1888,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -1932,7 +1932,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -1969,7 +1969,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"24.12.0")).call(); } /** @@ -2006,7 +2006,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"24.12.0")); } /** @@ -2046,7 +2046,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")).call(); } /** @@ -2086,7 +2086,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")); } /** @@ -2130,7 +2130,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -2174,7 +2174,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -2217,7 +2217,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"24.12.0")).call(); } /** @@ -2260,7 +2260,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"24.12.0")); } /** @@ -2294,7 +2294,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -2328,7 +2328,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -2367,7 +2367,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")).call(); } /** @@ -2406,7 +2406,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")); } /** @@ -2451,7 +2451,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")).call(); } /** @@ -2496,7 +2496,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")); } /** @@ -2522,7 +2522,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")).call(); } /** @@ -2548,7 +2548,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")); } /** @@ -2584,7 +2584,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"24.12.0")).call(); } /** @@ -2620,7 +2620,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"24.12.0")); } /** @@ -2657,7 +2657,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"24.12.0")).call(); } /** @@ -2694,7 +2694,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"24.12.0")); } /** @@ -2729,7 +2729,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -2764,7 +2764,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -2801,7 +2801,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -2838,7 +2838,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -2889,7 +2889,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -2940,7 +2940,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -2968,7 +2968,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, null, new TypeToken(){},"24.12.0")).call(); } /** @@ -2996,7 +2996,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, null, new TypeToken(){},"24.12.0")); } /** @@ -3032,7 +3032,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"24.12.0")).call(); } /** @@ -3068,7 +3068,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"24.12.0")); } /** @@ -3106,7 +3106,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"24.12.0")).call(); } /** @@ -3144,7 +3144,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"24.12.0")); } /** @@ -3177,7 +3177,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"24.12.0")).call(); } /** @@ -3210,7 +3210,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"24.12.0")); } /** @@ -3246,7 +3246,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, null, new TypeToken(){},"24.12.0")).call(); } /** @@ -3282,7 +3282,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, null, new TypeToken(){},"24.12.0")); } /** @@ -3303,7 +3303,7 @@ public CommunicationCertificateResponse getCommunicationCertificate(Integer comp AvaTaxPath path = new AvaTaxPath("/companies/{companyId}/communication-certificates/{certificateId}"); path.applyField("companyId", companyId); path.applyField("certificateId", certificateId); - return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")).call(); } /** @@ -3324,7 +3324,7 @@ public Future getCommunicationCertificateAsync AvaTaxPath path = new AvaTaxPath("/companies/{companyId}/communication-certificates/{certificateId}"); path.applyField("companyId", companyId); path.applyField("certificateId", certificateId); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")); } /** @@ -3357,7 +3357,7 @@ public CommunicationCertificateResponsePage listCommunicationCertificates(String path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); path.applyField("companyId", companyId); - return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")).call(); } /** @@ -3390,7 +3390,7 @@ public Future listCommunicationCertificate path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); path.applyField("companyId", companyId); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")); } /** @@ -3431,7 +3431,7 @@ public Future listCommunicationCertificate 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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")).call(); } /** @@ -3472,7 +3472,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")); } /** @@ -3504,7 +3504,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.12.0")).call(); } /** @@ -3536,7 +3536,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.12.0")); } /** @@ -3565,7 +3565,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.12.0")).call(); } /** @@ -3594,7 +3594,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.12.0")); } /** @@ -3616,7 +3616,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"24.12.0")).call(); } /** @@ -3638,7 +3638,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"24.12.0")); } /** @@ -3668,7 +3668,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"24.12.0")).call(); } /** @@ -3698,7 +3698,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"24.12.0")); } /** @@ -3732,7 +3732,7 @@ public FundingStatusModel createFundingRequest(Integer id, POABusinessUnit busin path.applyField("id", id); path.addQuery("businessUnit", businessUnit); path.addQuery("subscriptionType", subscriptionType); - return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.12.0")).call(); } /** @@ -3766,7 +3766,7 @@ public Future createFundingRequestAsync(Integer id, POABusin path.applyField("id", id); path.addQuery("businessUnit", businessUnit); path.addQuery("subscriptionType", subscriptionType); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.12.0")); } /** @@ -3785,7 +3785,7 @@ public Future createFundingRequestAsync(Integer id, POABusin public ArrayList deleteCompany(Integer id) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{id}"); path.applyField("id", id); - return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -3804,7 +3804,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -3830,7 +3830,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -3856,7 +3856,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -3879,7 +3879,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")).call(); } /** @@ -3902,7 +3902,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")); } /** @@ -3927,7 +3927,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -3952,7 +3952,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -3985,7 +3985,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")).call(); } /** @@ -4018,7 +4018,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")); } /** @@ -4048,7 +4048,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -4078,7 +4078,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -4105,7 +4105,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")).call(); } /** @@ -4132,7 +4132,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")); } /** @@ -4164,7 +4164,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")).call(); } /** @@ -4196,7 +4196,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")); } /** @@ -4223,7 +4223,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -4250,7 +4250,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -4286,7 +4286,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -4322,7 +4322,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -4345,7 +4345,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -4368,7 +4368,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -4387,7 +4387,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -4406,7 +4406,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -4449,7 +4449,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -4492,7 +4492,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -4523,7 +4523,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"24.12.0")).call(); } /** @@ -4554,7 +4554,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"24.12.0")); } /** @@ -4584,7 +4584,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"24.12.0")).call(); } /** @@ -4614,7 +4614,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"24.12.0")); } /** @@ -4642,7 +4642,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"24.12.0")).call(); } /** @@ -4670,7 +4670,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"24.12.0")); } /** @@ -4703,7 +4703,7 @@ public FetchResult queryJurisNames(String country, String region path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -4736,7 +4736,7 @@ public Future> queryJurisNamesAsync(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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -4771,7 +4771,7 @@ public FetchResult queryRateOptions(String country, S path.addQuery("$skip", skip); path.addQuery("$filter", filter); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -4806,7 +4806,7 @@ public Future> queryRateOptionsAsync(Stri path.addQuery("$skip", skip); path.addQuery("$filter", filter); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -4831,7 +4831,7 @@ public FetchResult queryStateConfig(String filter, I path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -4856,7 +4856,7 @@ public Future> queryStateConfigAsync(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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -4889,7 +4889,7 @@ public FetchResult queryStateReportingCodes(String countr path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -4922,7 +4922,7 @@ public Future> queryStateReportingCodesAsync( path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -4947,7 +4947,7 @@ public FetchResult queryTaxTypeMappings(String filter, Inte path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -4972,7 +4972,7 @@ public Future> queryTaxTypeMappingsAsync(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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -4994,7 +4994,7 @@ public Future> queryTaxTypeMappingsAsync(String 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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"24.12.0")).call(); } /** @@ -5016,7 +5016,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"24.12.0")); } /** @@ -5037,7 +5037,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -5058,7 +5058,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -5081,7 +5081,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")).call(); } /** @@ -5104,7 +5104,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")); } /** @@ -5134,7 +5134,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -5164,7 +5164,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -5194,7 +5194,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -5224,7 +5224,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -5250,7 +5250,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"24.12.0")).call(); } /** @@ -5276,7 +5276,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"24.12.0")); } /** @@ -5290,7 +5290,7 @@ public Future updateContactAsync(Integer companyId, Integer id, Co public CostCenterBulkUploadOutputModel bulkUploadCostCenters(Integer companyid, CostCenterBulkUploadInputModel model) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyid}/costcenters/$upload"); path.applyField("companyid", companyid); - return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.12.0")).call(); } /** @@ -5304,7 +5304,7 @@ public CostCenterBulkUploadOutputModel bulkUploadCostCenters(Integer companyid, public Future bulkUploadCostCentersAsync(Integer companyid, CostCenterBulkUploadInputModel model) { AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyid}/costcenters/$upload"); path.applyField("companyid", companyid); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.12.0")); } /** @@ -5321,7 +5321,7 @@ public Future bulkUploadCostCentersAsync(Intege public CostCenterSuccessResponseModel createCostCenter(Integer companyid, CostCenterRequestModel model) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyid}/costcenters"); path.applyField("companyid", companyid); - return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.12.0")).call(); } /** @@ -5338,7 +5338,7 @@ public CostCenterSuccessResponseModel createCostCenter(Integer companyid, CostCe public Future createCostCenterAsync(Integer companyid, CostCenterRequestModel model) { AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyid}/costcenters"); path.applyField("companyid", companyid); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.12.0")); } /** @@ -5353,7 +5353,7 @@ public TaxProfileErrorResponseModel deleteCostCenter(Integer companyid, Long cos AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyid}/costcenters/{costcenterid}"); path.applyField("companyid", companyid); path.applyField("costcenterid", costcenterid); - return ((RestCall)restCallFactory.createRestCall("delete", path, null, new TypeToken(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("delete", path, null, new TypeToken(){},"24.12.0")).call(); } /** @@ -5368,7 +5368,7 @@ public Future deleteCostCenterAsync(Integer compan AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyid}/costcenters/{costcenterid}"); path.applyField("companyid", companyid); path.applyField("costcenterid", costcenterid); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("delete", path, null, new TypeToken(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("delete", path, null, new TypeToken(){},"24.12.0")); } /** @@ -5383,7 +5383,7 @@ public CostCenterSuccessResponseModel getCostCenterById(Integer companyid, Long AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyid}/costcenters/{costcenterid}"); path.applyField("companyid", companyid); path.applyField("costcenterid", costcenterid); - return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")).call(); } /** @@ -5398,7 +5398,7 @@ public Future getCostCenterByIdAsync(Integer com AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyid}/costcenters/{costcenterid}"); path.applyField("companyid", companyid); path.applyField("costcenterid", costcenterid); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")); } /** @@ -5421,7 +5421,7 @@ public FetchResult listCostCentersByCompany(Inte path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -5444,7 +5444,7 @@ public Future> listCostCentersByComp path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -5465,7 +5465,7 @@ public FetchResult queryCostCenters(String filte path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -5486,7 +5486,7 @@ public Future> queryCostCentersAsync path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -5502,7 +5502,7 @@ public CostCenterSuccessResponseModel updateCostCenter(Integer companyid, Long c AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyid}/costcenters/{costcenterid}"); path.applyField("companyid", companyid); path.applyField("costcenterid", costcenterid); - return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"24.12.0")).call(); } /** @@ -5518,7 +5518,7 @@ public Future updateCostCenterAsync(Integer comp AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyid}/costcenters/{costcenterid}"); path.applyField("companyid", companyid); path.applyField("costcenterid", costcenterid); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"24.12.0")); } /** @@ -5553,7 +5553,7 @@ public Future updateCostCenterAsync(Integer comp 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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"24.12.0")).call(); } /** @@ -5588,7 +5588,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"24.12.0")); } /** @@ -5621,7 +5621,7 @@ public Void deleteCustomer(Integer companyId, String customerCode) throws Except 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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("delete", path, null, new TypeToken(){},"24.12.0")).call(); } /** @@ -5654,7 +5654,7 @@ public Future deleteCustomerAsync(Integer companyId, String customerCode) 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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("delete", path, null, new TypeToken(){},"24.12.0")); } /** @@ -5702,7 +5702,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")).call(); } /** @@ -5750,7 +5750,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")); } /** @@ -5787,7 +5787,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("put", path, model, new TypeToken>(){},"24.12.0")).call(); } /** @@ -5824,7 +5824,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("put", path, model, new TypeToken>(){},"24.12.0")); } /** @@ -5858,7 +5858,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"24.12.0")).call(); } /** @@ -5892,7 +5892,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"24.12.0")); } /** @@ -5927,7 +5927,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.12.0")).call(); } /** @@ -5962,7 +5962,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.12.0")); } /** @@ -5998,7 +5998,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -6034,7 +6034,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -6077,7 +6077,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -6120,7 +6120,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -6160,7 +6160,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")).call(); } /** @@ -6200,7 +6200,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")); } /** @@ -6254,7 +6254,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -6308,7 +6308,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -6345,7 +6345,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("put", path, model, new TypeToken>(){},"24.12.0")).call(); } /** @@ -6382,7 +6382,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("put", path, model, new TypeToken>(){},"24.12.0")); } /** @@ -6416,7 +6416,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"24.12.0")).call(); } /** @@ -6450,7 +6450,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"24.12.0")); } /** @@ -6484,7 +6484,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"24.12.0")).call(); } /** @@ -6518,7 +6518,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"24.12.0")); } /** @@ -6539,7 +6539,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"24.12.0")).call(); } /** @@ -6560,7 +6560,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"24.12.0")); } /** @@ -6582,7 +6582,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -6604,7 +6604,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -6626,7 +6626,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")).call(); } /** @@ -6648,7 +6648,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")); } /** @@ -6676,7 +6676,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -6704,7 +6704,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -6733,7 +6733,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -6762,7 +6762,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -6785,7 +6785,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"24.12.0")).call(); } /** @@ -6808,7 +6808,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"24.12.0")); } /** @@ -6838,7 +6838,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -6868,7 +6868,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -6891,7 +6891,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -6914,7 +6914,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -6933,7 +6933,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -6952,7 +6952,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -6977,7 +6977,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -7002,7 +7002,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -7030,7 +7030,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -7058,7 +7058,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -7084,7 +7084,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -7110,7 +7110,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -7136,7 +7136,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -7162,7 +7162,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -7184,7 +7184,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -7206,7 +7206,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -7227,7 +7227,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -7248,7 +7248,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -7269,7 +7269,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -7290,7 +7290,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -7311,7 +7311,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -7332,7 +7332,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -7354,7 +7354,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -7376,7 +7376,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -7403,7 +7403,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -7430,7 +7430,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -7466,7 +7466,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -7502,7 +7502,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -7524,7 +7524,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -7546,7 +7546,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -7569,7 +7569,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -7592,7 +7592,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -7616,7 +7616,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -7640,7 +7640,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -7661,7 +7661,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -7682,7 +7682,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -7699,7 +7699,7 @@ public Future> listFilingFrequenciesAsync(Stri */ public ArrayList listItemsRecommendationsStatus() throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/definitions/items/recommendationstatus"); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -7716,7 +7716,7 @@ public ArrayList listItemsRecommendationsS */ public Future> listItemsRecommendationsStatusAsync() { AvaTaxPath path = new AvaTaxPath("/api/v2/definitions/items/recommendationstatus"); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -7733,7 +7733,7 @@ public Future> listItemsRecommen */ public ArrayList listItemsStatus() throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/definitions/items/status"); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -7750,7 +7750,7 @@ public ArrayList listItemsStatus() throws Exception { */ public Future> listItemsStatusAsync() { AvaTaxPath path = new AvaTaxPath("/api/v2/definitions/items/status"); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -7775,7 +7775,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -7800,7 +7800,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -7840,7 +7840,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -7880,7 +7880,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -7917,7 +7917,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -7954,7 +7954,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -7978,7 +7978,7 @@ public FetchResult listJurisdictionsHierarchy(String path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -8002,7 +8002,7 @@ public Future> listJurisdictionsHierarch path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -8021,7 +8021,7 @@ public ArrayList listJurisdictionTypesByRateTypeTaxTypeMapping(String co path.applyField("taxTypeId", taxTypeId); path.applyField("taxSubTypeId", taxSubTypeId); path.addQuery("rateTypeId", rateTypeId); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -8040,7 +8040,7 @@ public Future> listJurisdictionTypesByRateTypeTaxTypeMappingAs path.applyField("taxTypeId", taxTypeId); path.applyField("taxSubTypeId", taxSubTypeId); path.addQuery("rateTypeId", rateTypeId); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -8083,7 +8083,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -8126,7 +8126,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -8148,7 +8148,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -8170,7 +8170,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -8189,7 +8189,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -8208,7 +8208,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -8230,7 +8230,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -8252,7 +8252,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -8290,7 +8290,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -8328,7 +8328,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -8352,7 +8352,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -8376,7 +8376,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -8402,7 +8402,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -8428,7 +8428,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -8457,7 +8457,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")).call(); } /** @@ -8486,7 +8486,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")); } /** @@ -8510,7 +8510,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -8534,7 +8534,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -8555,7 +8555,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -8576,7 +8576,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -8597,7 +8597,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -8618,7 +8618,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -8639,7 +8639,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -8660,7 +8660,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -8681,7 +8681,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -8702,7 +8702,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -8723,7 +8723,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -8744,7 +8744,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -8765,7 +8765,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -8786,7 +8786,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -8807,7 +8807,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -8828,7 +8828,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -8849,7 +8849,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -8870,7 +8870,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -8891,7 +8891,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -8912,7 +8912,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -8933,7 +8933,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -8954,7 +8954,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -8976,7 +8976,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -8998,7 +8998,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -9019,7 +9019,7 @@ public FetchResult listParametersByAccount(Integer accountId, St path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -9040,7 +9040,7 @@ public Future> listParametersByAccountAsync(Integer path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -9082,7 +9082,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -9124,7 +9124,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -9146,7 +9146,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -9168,7 +9168,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -9185,7 +9185,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -9202,7 +9202,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -9223,7 +9223,7 @@ public FetchResult listPostalCodes(String filter, Integer top, path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); path.addQuery("includeExpiredPostalCodes", includeExpiredPostalCodes); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -9244,7 +9244,7 @@ public Future> listPostalCodesAsync(String filter, path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); path.addQuery("includeExpiredPostalCodes", includeExpiredPostalCodes); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -9272,7 +9272,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -9300,7 +9300,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -9325,7 +9325,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -9350,7 +9350,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -9385,7 +9385,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -9420,7 +9420,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -9443,7 +9443,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -9466,7 +9466,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -9493,7 +9493,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -9520,7 +9520,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -9542,7 +9542,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -9564,7 +9564,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -9588,7 +9588,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -9612,7 +9612,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -9644,7 +9644,7 @@ public FetchResult listRegionsByCountryAndTaxTypeAndTaxSubTypeAn path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -9676,7 +9676,7 @@ public Future> listRegionsByCountryAndTaxTypeAndTaxS path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -9698,7 +9698,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -9720,7 +9720,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -9742,7 +9742,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -9764,7 +9764,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -9787,7 +9787,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -9810,7 +9810,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -9829,7 +9829,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -9848,7 +9848,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -9869,7 +9869,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -9890,7 +9890,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -9913,7 +9913,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -9936,7 +9936,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -9957,7 +9957,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -9978,7 +9978,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -10007,7 +10007,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -10036,7 +10036,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -10054,7 +10054,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")).call(); } /** @@ -10072,7 +10072,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")); } /** @@ -10093,7 +10093,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -10114,7 +10114,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -10135,7 +10135,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -10156,7 +10156,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -10183,7 +10183,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -10210,7 +10210,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -10235,7 +10235,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -10260,7 +10260,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -10281,7 +10281,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -10302,7 +10302,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -10323,7 +10323,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -10344,7 +10344,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -10369,7 +10369,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -10394,7 +10394,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -10416,7 +10416,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -10438,7 +10438,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -10462,7 +10462,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"24.12.0")).call(); } /** @@ -10486,7 +10486,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"24.12.0")); } /** @@ -10511,7 +10511,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -10536,7 +10536,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -10561,7 +10561,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")).call(); } /** @@ -10586,7 +10586,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")); } /** @@ -10619,7 +10619,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -10652,7 +10652,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -10686,7 +10686,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -10720,7 +10720,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -10749,7 +10749,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"24.12.0")).call(); } /** @@ -10778,7 +10778,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"24.12.0")); } /** @@ -10790,7 +10790,7 @@ public Future updateDistanceThresholdAsync(Intege */ public DcvCreationResponse createDcv(DomainNameViewModel model) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/domain-control-verifications"); - return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.12.0")).call(); } /** @@ -10802,7 +10802,7 @@ public DcvCreationResponse createDcv(DomainNameViewModel model) throws Exception */ public Future createDcvAsync(DomainNameViewModel model) { AvaTaxPath path = new AvaTaxPath("/api/v2/domain-control-verifications"); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.12.0")); } /** @@ -10815,7 +10815,7 @@ public Future createDcvAsync(DomainNameViewModel model) { public ArrayList filterDcv(String filter) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/domain-control-verifications"); path.addQuery("$filter", filter); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -10828,7 +10828,7 @@ public ArrayList filterDcv(String filter) throws Exception { public Future> filterDcvAsync(String filter) { AvaTaxPath path = new AvaTaxPath("/api/v2/domain-control-verifications"); path.addQuery("$filter", filter); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -10841,7 +10841,7 @@ public Future> filterDcvAsync(String filter) { public DcvViewModel getDcvById(String domainControlVerificationId) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/domain-control-verifications/{domainControlVerificationId}"); path.applyField("domainControlVerificationId", domainControlVerificationId); - return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")).call(); } /** @@ -10854,7 +10854,7 @@ public DcvViewModel getDcvById(String domainControlVerificationId) throws Except public Future getDcvByIdAsync(String domainControlVerificationId) { AvaTaxPath path = new AvaTaxPath("/api/v2/domain-control-verifications/{domainControlVerificationId}"); path.applyField("domainControlVerificationId", domainControlVerificationId); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")); } /** @@ -10874,7 +10874,7 @@ public Future getDcvByIdAsync(String domainControlVerificationId) public FetchResult deleteAfcEventNotifications(Boolean isDlq, EventDeleteMessageModel model) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/event-notifications/afc"); path.addQuery("isDlq", isDlq); - return ((RestCall>)restCallFactory.createRestCall("delete", path, model, new TypeToken>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("delete", path, model, new TypeToken>(){},"24.12.0")).call(); } /** @@ -10894,7 +10894,7 @@ public FetchResult deleteAfcEventNotifications(Boolean isD public Future> deleteAfcEventNotificationsAsync(Boolean isDlq, EventDeleteMessageModel model) { AvaTaxPath path = new AvaTaxPath("/api/v2/event-notifications/afc"); path.addQuery("isDlq", isDlq); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, model, new TypeToken>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, model, new TypeToken>(){},"24.12.0")); } /** @@ -10914,7 +10914,7 @@ public Future> deleteAfcEventNotificationsAsyn public FetchResult deleteEventNotifications(Integer companyId, EventDeleteMessageModel model) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/event-notifications/companies/{companyId}"); path.applyField("companyId", companyId); - return ((RestCall>)restCallFactory.createRestCall("delete", path, model, new TypeToken>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("delete", path, model, new TypeToken>(){},"24.12.0")).call(); } /** @@ -10934,7 +10934,7 @@ public FetchResult deleteEventNotifications(Integer compan public Future> deleteEventNotificationsAsync(Integer companyId, EventDeleteMessageModel model) { AvaTaxPath path = new AvaTaxPath("/api/v2/event-notifications/companies/{companyId}"); path.applyField("companyId", companyId); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, model, new TypeToken>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, model, new TypeToken>(){},"24.12.0")); } /** @@ -10953,7 +10953,7 @@ public Future> deleteEventNotificationsAsync(I public FetchResult getEventNotifications(Integer companyId) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/event-notifications/companies/{companyId}"); path.applyField("companyId", companyId); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -10972,7 +10972,7 @@ public FetchResult getEventNotifications(Integer companyId public Future> getEventNotificationsAsync(Integer companyId) { AvaTaxPath path = new AvaTaxPath("/api/v2/event-notifications/companies/{companyId}"); path.applyField("companyId", companyId); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -10991,7 +10991,7 @@ public Future> getEventNotificationsAsync(Inte public FetchResult listAfcEventNotifications(Boolean isDlq) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/event-notifications/afc"); path.addQuery("isDlq", isDlq); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -11010,7 +11010,7 @@ public FetchResult listAfcEventNotifications(Boolean isDlq public Future> listAfcEventNotificationsAsync(Boolean isDlq) { AvaTaxPath path = new AvaTaxPath("/api/v2/event-notifications/afc"); path.addQuery("isDlq", isDlq); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -11036,7 +11036,7 @@ public Future> listAfcEventNotificationsAsync( 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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.12.0")).call(); } /** @@ -11062,7 +11062,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.12.0")); } /** @@ -11084,7 +11084,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("put", path, model, new TypeToken>(){},"24.12.0")).call(); } /** @@ -11106,7 +11106,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("put", path, model, new TypeToken>(){},"24.12.0")); } /** @@ -11125,7 +11125,7 @@ public Future> refreshECommerceTokenAsync public FirmClientLinkageOutputModel approveFirmClientLinkage(Integer id) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/firmclientlinkages/{id}/approve"); path.applyField("id", id); - return ((RestCall)restCallFactory.createRestCall("post", path, null, new TypeToken(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, null, new TypeToken(){},"24.12.0")).call(); } /** @@ -11144,7 +11144,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, null, new TypeToken(){},"24.12.0")); } /** @@ -11171,7 +11171,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.12.0")).call(); } /** @@ -11198,7 +11198,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.12.0")); } /** @@ -11216,7 +11216,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.12.0")).call(); } /** @@ -11234,7 +11234,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.12.0")); } /** @@ -11253,7 +11253,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -11272,7 +11272,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -11291,7 +11291,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")).call(); } /** @@ -11310,7 +11310,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")); } /** @@ -11329,7 +11329,7 @@ public Future getFirmClientLinkageAsync(Integer id */ public FirmClientLinkageOutputModel insertFirmClientLinkage(FirmClientLinkageModel model) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/firmclientlinkages/insert"); - return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.12.0")).call(); } /** @@ -11348,7 +11348,7 @@ public FirmClientLinkageOutputModel insertFirmClientLinkage(FirmClientLinkageMod */ public Future insertFirmClientLinkageAsync(FirmClientLinkageModel model) { AvaTaxPath path = new AvaTaxPath("/api/v2/firmclientlinkages/insert"); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.12.0")); } /** @@ -11367,7 +11367,7 @@ public Future insertFirmClientLinkageAsync(FirmCli 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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -11386,7 +11386,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -11405,7 +11405,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, null, new TypeToken(){},"24.12.0")).call(); } /** @@ -11424,7 +11424,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, null, new TypeToken(){},"24.12.0")); } /** @@ -11443,7 +11443,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, null, new TypeToken(){},"24.12.0")).call(); } /** @@ -11462,7 +11462,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, null, new TypeToken(){},"24.12.0")); } /** @@ -11481,7 +11481,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, null, new TypeToken(){},"24.12.0")).call(); } /** @@ -11500,7 +11500,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, null, new TypeToken(){},"24.12.0")); } /** @@ -11519,7 +11519,7 @@ public Future revokeFirmClientLinkageAsync(Integer */ public FirmClientLinkageOutputModel updateFirmClientLinkage(FirmClientLinkageModel model) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/firmclientlinkages"); - return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"24.12.0")).call(); } /** @@ -11538,7 +11538,7 @@ public FirmClientLinkageOutputModel updateFirmClientLinkage(FirmClientLinkageMod */ public Future updateFirmClientLinkageAsync(FirmClientLinkageModel model) { AvaTaxPath path = new AvaTaxPath("/api/v2/firmclientlinkages"); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"24.12.0")); } /** @@ -11566,14 +11566,18 @@ public Future updateFirmClientLinkageAsync(FirmCli * @param id The unique ID number of this funding request * @param businessUnit The company's business unit (See POABusinessUnit::* for a list of allowable values) * @param subscriptionType The company's subscription type (See POASubscriptionType::* for a list of allowable values) + * @param currency Currency + * @param agreementType Agreement Type * @return FundingStatusModel */ - public FundingStatusModel activateFundingRequest(Integer id, POABusinessUnit businessUnit, POASubscriptionType subscriptionType) throws Exception { + public FundingStatusModel activateFundingRequest(Integer id, POABusinessUnit businessUnit, POASubscriptionType subscriptionType, String currency, String agreementType) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/fundingrequests/{id}/widget"); path.applyField("id", id); path.addQuery("businessUnit", businessUnit); path.addQuery("subscriptionType", subscriptionType); - return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.11.2")).call(); + path.addQuery("currency", currency); + path.addQuery("agreementType", agreementType); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")).call(); } /** @@ -11601,14 +11605,18 @@ public FundingStatusModel activateFundingRequest(Integer id, POABusinessUnit bus * @param id The unique ID number of this funding request * @param businessUnit The company's business unit (See POABusinessUnit::* for a list of allowable values) * @param subscriptionType The company's subscription type (See POASubscriptionType::* for a list of allowable values) + * @param currency Currency + * @param agreementType Agreement Type * @return FundingStatusModel */ - public Future activateFundingRequestAsync(Integer id, POABusinessUnit businessUnit, POASubscriptionType subscriptionType) { + public Future activateFundingRequestAsync(Integer id, POABusinessUnit businessUnit, POASubscriptionType subscriptionType, String currency, String agreementType) { AvaTaxPath path = new AvaTaxPath("/api/v2/fundingrequests/{id}/widget"); path.applyField("id", id); path.addQuery("businessUnit", businessUnit); path.addQuery("subscriptionType", subscriptionType); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.11.2")); + path.addQuery("currency", currency); + path.addQuery("agreementType", agreementType); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")); } /** @@ -11641,7 +11649,7 @@ public FundingStatusModel fundingRequestStatus(Integer id, POABusinessUnit busin path.applyField("id", id); path.addQuery("businessUnit", businessUnit); path.addQuery("subscriptionType", subscriptionType); - return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")).call(); } /** @@ -11674,7 +11682,7 @@ public Future fundingRequestStatusAsync(Integer id, POABusin path.applyField("id", id); path.addQuery("businessUnit", businessUnit); path.addQuery("subscriptionType", subscriptionType); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")); } /** @@ -11688,7 +11696,7 @@ public Future fundingRequestStatusAsync(Integer id, POABusin public GLAccountBulkUploadOutputModel bulkUploadGLAccounts(Integer companyid, GLAccountBulkUploadInputModel model) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyid}/glaccounts/$upload"); path.applyField("companyid", companyid); - return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.12.0")).call(); } /** @@ -11702,7 +11710,7 @@ public GLAccountBulkUploadOutputModel bulkUploadGLAccounts(Integer companyid, GL public Future bulkUploadGLAccountsAsync(Integer companyid, GLAccountBulkUploadInputModel model) { AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyid}/glaccounts/$upload"); path.applyField("companyid", companyid); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.12.0")); } /** @@ -11719,7 +11727,7 @@ public Future bulkUploadGLAccountsAsync(Integer public GLAccountSuccessResponseModel createGLAccount(Integer companyid, GLAccountRequestModel model) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyid}/glaccounts"); path.applyField("companyid", companyid); - return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.12.0")).call(); } /** @@ -11736,7 +11744,7 @@ public GLAccountSuccessResponseModel createGLAccount(Integer companyid, GLAccoun public Future createGLAccountAsync(Integer companyid, GLAccountRequestModel model) { AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyid}/glaccounts"); path.applyField("companyid", companyid); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.12.0")); } /** @@ -11751,7 +11759,7 @@ public TaxProfileErrorResponseModel deleteGLAccount(Integer companyid, Long glac AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyid}/glaccounts/{glaccountid}"); path.applyField("companyid", companyid); path.applyField("glaccountid", glaccountid); - return ((RestCall)restCallFactory.createRestCall("delete", path, null, new TypeToken(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("delete", path, null, new TypeToken(){},"24.12.0")).call(); } /** @@ -11766,7 +11774,7 @@ public Future deleteGLAccountAsync(Integer company AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyid}/glaccounts/{glaccountid}"); path.applyField("companyid", companyid); path.applyField("glaccountid", glaccountid); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("delete", path, null, new TypeToken(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("delete", path, null, new TypeToken(){},"24.12.0")); } /** @@ -11781,7 +11789,7 @@ public GLAccountSuccessResponseModel getGLAccountById(Integer companyid, Long gl AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyid}/glaccounts/{glaccountid}"); path.applyField("companyid", companyid); path.applyField("glaccountid", glaccountid); - return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")).call(); } /** @@ -11796,7 +11804,7 @@ public Future getGLAccountByIdAsync(Integer compa AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyid}/glaccounts/{glaccountid}"); path.applyField("companyid", companyid); path.applyField("glaccountid", glaccountid); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")); } /** @@ -11819,7 +11827,7 @@ public FetchResult listGLAccountsByCompany(Intege path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -11842,7 +11850,7 @@ public Future> listGLAccountsByCompan path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -11858,7 +11866,7 @@ public GLAccountSuccessResponseModel updateGLAccount(Integer companyid, Long gla AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyid}/glaccounts/{glaccountid}"); path.applyField("companyid", companyid); path.applyField("glaccountid", glaccountid); - return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"24.12.0")).call(); } /** @@ -11874,7 +11882,7 @@ public Future updateGLAccountAsync(Integer compan AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyid}/glaccounts/{glaccountid}"); path.applyField("companyid", companyid); path.applyField("glaccountid", glaccountid); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"24.12.0")); } /** @@ -11899,7 +11907,7 @@ public ArrayList batchDeleteItemClassi 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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -11924,7 +11932,7 @@ public Future> batchDeleteIt 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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -11951,7 +11959,7 @@ public ArrayList batchDeleteItemParame 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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -11978,7 +11986,7 @@ public Future> batchDeleteIt 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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -12006,7 +12014,7 @@ public Future> batchDeleteIt 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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.12.0")).call(); } /** @@ -12034,7 +12042,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.12.0")); } /** @@ -12062,7 +12070,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"24.12.0")).call(); } /** @@ -12090,7 +12098,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"24.12.0")); } /** @@ -12122,7 +12130,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"24.12.0")).call(); } /** @@ -12154,7 +12162,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"24.12.0")); } /** @@ -12184,7 +12192,7 @@ public ArrayList createItems(Integer companyId, Boolean processRecomm AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/items"); path.applyField("companyId", companyId); path.addQuery("processRecommendationsSynchronously", processRecommendationsSynchronously); - return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"24.12.0")).call(); } /** @@ -12214,7 +12222,7 @@ public Future> createItemsAsync(Integer companyId, Boolean AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/items"); path.applyField("companyId", companyId); path.addQuery("processRecommendationsSynchronously", processRecommendationsSynchronously); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"24.12.0")); } /** @@ -12238,7 +12246,7 @@ public ArrayList createItemTags(Integer companyId, Int 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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"24.12.0")).call(); } /** @@ -12262,7 +12270,7 @@ public Future> createItemTagsAsync(Integer c 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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"24.12.0")); } /** @@ -12286,7 +12294,7 @@ public Future> createItemTagsAsync(Integer c 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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.12.0")).call(); } /** @@ -12310,7 +12318,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.12.0")); } /** @@ -12345,7 +12353,7 @@ public ArrayList deleteCatalogueItem(Integer companyId, 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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -12380,7 +12388,7 @@ public Future> deleteCatalogueItemAsync(Integ 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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -12409,7 +12417,7 @@ public ArrayList deleteItem(Integer companyId, Long id) 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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -12438,7 +12446,7 @@ public Future> deleteItemAsync(Integer compan 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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -12465,7 +12473,7 @@ public ArrayList deleteItemClassification(Integer compa path.applyField("companyId", companyId); path.applyField("itemId", itemId); path.applyField("id", id); - return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -12492,7 +12500,7 @@ public Future> deleteItemClassificationAsync( path.applyField("companyId", companyId); path.applyField("itemId", itemId); path.applyField("id", id); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -12521,7 +12529,7 @@ public ArrayList deleteItemParameter(Integer companyId, path.applyField("companyId", companyId); path.applyField("itemId", itemId); path.applyField("id", id); - return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -12550,7 +12558,7 @@ public Future> deleteItemParameterAsync(Integ path.applyField("companyId", companyId); path.applyField("itemId", itemId); path.applyField("id", id); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -12575,7 +12583,7 @@ public ArrayList deleteItemTag(Integer companyId, Long path.applyField("companyId", companyId); path.applyField("itemId", itemId); path.applyField("itemTagDetailId", itemTagDetailId); - return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -12600,7 +12608,7 @@ public Future> deleteItemTagAsync(Integer com path.applyField("companyId", companyId); path.applyField("itemId", itemId); path.applyField("itemTagDetailId", itemTagDetailId); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -12623,7 +12631,7 @@ public ArrayList deleteItemTags(Intege 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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -12646,7 +12654,7 @@ public Future> deleteItemTag 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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -12675,7 +12683,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")).call(); } /** @@ -12704,7 +12712,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")); } /** @@ -12731,7 +12739,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")).call(); } /** @@ -12758,7 +12766,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")); } /** @@ -12787,7 +12795,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")).call(); } /** @@ -12816,7 +12824,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")); } /** @@ -12845,7 +12853,7 @@ public FetchResult getItemTags(Integer companyId, Long path.addQuery("$filter", filter); path.addQuery("$top", top); path.addQuery("$skip", skip); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -12874,7 +12882,7 @@ public Future> getItemTagsAsync(Integer co path.addQuery("$filter", filter); path.addQuery("$top", top); path.addQuery("$skip", skip); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -12895,7 +12903,7 @@ public ArrayList getItemTaxCodeRecommendations AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/items/{itemId}/taxcoderecommendations"); path.applyField("companyId", companyId); path.applyField("itemId", itemId); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -12916,7 +12924,7 @@ public Future> getItemTaxCodeRecomme AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyId}/items/{itemId}/taxcoderecommendations"); path.applyField("companyId", companyId); path.applyField("itemId", itemId); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -12948,7 +12956,7 @@ public ItemPremiumClassificationOutputModel getPremiumClassification(Integer com path.applyField("companyId", companyId); path.applyField("itemCode", itemCode); path.applyField("systemCode", systemCode); - return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")).call(); } /** @@ -12980,7 +12988,7 @@ public Future getPremiumClassificationAsyn path.applyField("companyId", companyId); path.applyField("itemCode", itemCode); path.applyField("systemCode", systemCode); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")); } /** @@ -13018,7 +13026,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -13056,7 +13064,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -13092,7 +13100,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -13128,7 +13136,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -13166,7 +13174,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -13204,7 +13212,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -13264,7 +13272,7 @@ public FetchResult listItemsByCompany(Integer companyId, String filte path.addQuery("tagName", tagName); path.addQuery("itemStatus", itemStatus); path.addQuery("taxCodeRecommendationStatus", taxCodeRecommendationStatus); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -13324,7 +13332,7 @@ public Future> listItemsByCompanyAsync(Integer companyId, path.addQuery("tagName", tagName); path.addQuery("itemStatus", itemStatus); path.addQuery("taxCodeRecommendationStatus", taxCodeRecommendationStatus); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -13355,7 +13363,7 @@ public FetchResult listRecommendedParameterByCompanyIdAndItemId( path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -13386,7 +13394,7 @@ public Future> listRecommendedParameterByCompanyIdAn path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -13423,7 +13431,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -13460,7 +13468,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -13498,7 +13506,7 @@ public FetchResult queryItemsBySystemCode(Integer companyId, String s path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"24.12.0")).call(); } /** @@ -13536,7 +13544,7 @@ public Future> queryItemsBySystemCodeAsync(Integer compan path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"24.12.0")); } /** @@ -13577,7 +13585,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -13618,7 +13626,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -13644,7 +13652,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.12.0")).call(); } /** @@ -13670,7 +13678,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.12.0")); } /** @@ -13701,7 +13709,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.12.0")).call(); } /** @@ -13732,7 +13740,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.12.0")); } /** @@ -13769,7 +13777,7 @@ public ItemModel updateItem(Integer companyId, Long id, Boolean isRecommendation path.applyField("id", id); path.addQuery("isRecommendationSelected", isRecommendationSelected); path.addQuery("isRecommendationRejected", isRecommendationRejected); - return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"24.12.0")).call(); } /** @@ -13806,7 +13814,7 @@ public Future updateItemAsync(Integer companyId, Long id, Boolean isR path.applyField("id", id); path.addQuery("isRecommendationSelected", isRecommendationSelected); path.addQuery("isRecommendationRejected", isRecommendationRejected); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"24.12.0")); } /** @@ -13836,7 +13844,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"24.12.0")).call(); } /** @@ -13866,7 +13874,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"24.12.0")); } /** @@ -13896,7 +13904,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"24.12.0")).call(); } /** @@ -13926,7 +13934,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"24.12.0")); } /** @@ -13951,7 +13959,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"24.12.0")).call(); } /** @@ -13976,7 +13984,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"24.12.0")); } /** @@ -13997,7 +14005,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -14018,7 +14026,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -14044,7 +14052,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")).call(); } /** @@ -14070,7 +14078,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")); } /** @@ -14107,7 +14115,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -14144,7 +14152,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -14179,7 +14187,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -14214,7 +14222,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -14236,7 +14244,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"24.12.0")).call(); } /** @@ -14258,7 +14266,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"24.12.0")); } /** @@ -14290,7 +14298,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"24.12.0")).call(); } /** @@ -14322,7 +14330,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"24.12.0")); } /** @@ -14342,7 +14350,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"24.12.0")).call(); } /** @@ -14362,7 +14370,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"24.12.0")); } /** @@ -14383,7 +14391,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -14404,7 +14412,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -14433,7 +14441,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -14462,7 +14470,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -14494,7 +14502,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")).call(); } /** @@ -14526,7 +14534,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")); } /** @@ -14555,7 +14563,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")).call(); } /** @@ -14584,7 +14592,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")); } /** @@ -14622,7 +14630,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -14660,7 +14668,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -14700,7 +14708,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -14740,7 +14748,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -14779,7 +14787,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -14818,7 +14826,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -14842,7 +14850,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"24.12.0")).call(); } /** @@ -14866,7 +14874,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"24.12.0")); } /** @@ -14896,7 +14904,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"24.12.0")).call(); } /** @@ -14926,7 +14934,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"24.12.0")); } /** @@ -14949,7 +14957,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")).call(); } /** @@ -14972,7 +14980,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")); } /** @@ -15014,7 +15022,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.12.0")).call(); } /** @@ -15056,7 +15064,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.12.0")); } /** @@ -15099,7 +15107,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")).call(); } /** @@ -15142,7 +15150,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")); } /** @@ -15176,7 +15184,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.12.0")).call(); } /** @@ -15210,7 +15218,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.12.0")); } /** @@ -15270,7 +15278,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.12.0")).call(); } /** @@ -15330,7 +15338,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.12.0")); } /** @@ -15373,7 +15381,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")).call(); } /** @@ -15416,7 +15424,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")); } /** @@ -15466,7 +15474,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")).call(); } /** @@ -15516,7 +15524,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")); } /** @@ -15570,7 +15578,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -15624,7 +15632,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -15692,7 +15700,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.12.0")).call(); } /** @@ -15760,7 +15768,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.12.0")); } /** @@ -15792,7 +15800,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.12.0")).call(); } /** @@ -15824,7 +15832,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.12.0")); } /** @@ -15863,7 +15871,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.12.0")).call(); } /** @@ -15902,7 +15910,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.12.0")); } /** @@ -15940,7 +15948,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"24.12.0")).call(); } /** @@ -15978,7 +15986,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"24.12.0")); } /** @@ -16009,7 +16017,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"24.12.0")).call(); } /** @@ -16040,7 +16048,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"24.12.0")); } /** @@ -16074,7 +16082,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"24.12.0")).call(); } /** @@ -16108,7 +16116,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"24.12.0")); } /** @@ -16138,7 +16146,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -16168,7 +16176,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -16196,7 +16204,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -16224,7 +16232,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -16250,7 +16258,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -16276,7 +16284,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -16306,7 +16314,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")).call(); } /** @@ -16336,7 +16344,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")); } /** @@ -16370,7 +16378,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")).call(); } /** @@ -16404,7 +16412,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")); } /** @@ -16432,7 +16440,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")).call(); } /** @@ -16460,7 +16468,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")); } /** @@ -16499,7 +16507,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -16538,7 +16546,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -16579,7 +16587,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -16620,7 +16628,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -16657,7 +16665,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -16694,7 +16702,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -16731,7 +16739,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -16768,7 +16776,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -16808,7 +16816,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"24.12.0")).call(); } /** @@ -16848,7 +16856,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"24.12.0")); } /** @@ -16878,7 +16886,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"24.12.0")).call(); } /** @@ -16908,7 +16916,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"24.12.0")); } /** @@ -16927,7 +16935,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.12.0")).call(); } /** @@ -16946,7 +16954,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.12.0")); } /** @@ -16965,7 +16973,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.12.0")).call(); } /** @@ -16984,7 +16992,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.12.0")); } /** @@ -17003,7 +17011,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -17022,7 +17030,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -17041,7 +17049,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -17060,7 +17068,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -17092,7 +17100,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("put", path, null, new TypeToken(){},"24.12.0")).call(); } /** @@ -17124,7 +17132,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, null, new TypeToken(){},"24.12.0")); } /** @@ -17150,7 +17158,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")).call(); } /** @@ -17176,7 +17184,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")); } /** @@ -17211,7 +17219,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -17246,7 +17254,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -17279,7 +17287,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.12.0")).call(); } /** @@ -17312,7 +17320,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.12.0")); } /** @@ -17336,7 +17344,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, null, new TypeToken(){},"24.12.0")).call(); } /** @@ -17360,7 +17368,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, null, new TypeToken(){},"24.12.0")); } /** @@ -17382,7 +17390,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"24.12.0")).call(); } /** @@ -17404,7 +17412,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"24.12.0")); } /** @@ -17435,7 +17443,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"24.12.0")).call(); } /** @@ -17466,7 +17474,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"24.12.0")); } /** @@ -17490,7 +17498,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"24.12.0")).call(); } /** @@ -17514,7 +17522,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"24.12.0")); } /** @@ -17537,7 +17545,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -17560,7 +17568,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -17589,7 +17597,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -17618,7 +17626,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -17642,7 +17650,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -17666,7 +17674,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -17697,7 +17705,7 @@ public FetchResult listServiceTypes(String filter, Intege path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -17728,7 +17736,7 @@ public Future> listServiceTypesAsync(String f path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -17756,7 +17764,7 @@ public String resetPassword(Integer userId, Boolean isUndoMigrateRequest, SetPas AvaTaxPath path = new AvaTaxPath("/api/v2/passwords/{userId}/reset"); path.applyField("userId", userId); path.addQuery("isUndoMigrateRequest", isUndoMigrateRequest); - return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.12.0")).call(); } /** @@ -17784,7 +17792,7 @@ public Future resetPasswordAsync(Integer userId, Boolean isUndoMigrateRe AvaTaxPath path = new AvaTaxPath("/api/v2/passwords/{userId}/reset"); path.applyField("userId", userId); path.addQuery("isUndoMigrateRequest", isUndoMigrateRequest); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.12.0")); } /** @@ -17807,7 +17815,7 @@ public Future resetPasswordAsync(Integer userId, Boolean isUndoMigrateRe public AccountModel updateAccount(Integer id, AccountModel model) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/accounts/{id}"); path.applyField("id", id); - return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"24.12.0")).call(); } /** @@ -17830,7 +17838,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"24.12.0")); } /** @@ -17860,7 +17868,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"24.12.0")).call(); } /** @@ -17890,7 +17898,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"24.12.0")); } /** @@ -17919,7 +17927,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"24.12.0")).call(); } /** @@ -17948,7 +17956,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"24.12.0")); } /** @@ -17980,7 +17988,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")).call(); } /** @@ -18012,7 +18020,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")); } /** @@ -18036,7 +18044,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")).call(); } /** @@ -18060,7 +18068,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")); } /** @@ -18099,7 +18107,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"24.12.0")).call(); } /** @@ -18138,7 +18146,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"24.12.0")); } /** @@ -18173,7 +18181,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -18208,7 +18216,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -18242,7 +18250,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"24.12.0")).call(); } /** @@ -18276,7 +18284,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"24.12.0")); } /** @@ -18306,7 +18314,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -18336,7 +18344,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -18366,7 +18374,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")).call(); } /** @@ -18396,7 +18404,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")); } /** @@ -18437,7 +18445,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -18478,7 +18486,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -18517,7 +18525,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -18556,7 +18564,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -18591,7 +18599,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"24.12.0")).call(); } /** @@ -18626,7 +18634,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"24.12.0")); } /** @@ -18649,7 +18657,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")).call(); } /** @@ -18672,7 +18680,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")); } /** @@ -18704,7 +18712,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -18736,7 +18744,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -18766,7 +18774,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -18796,7 +18804,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -18820,7 +18828,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"24.12.0")).call(); } /** @@ -18844,7 +18852,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"24.12.0")); } /** @@ -18865,7 +18873,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -18886,7 +18894,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -18911,7 +18919,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")).call(); } /** @@ -18936,7 +18944,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")); } /** @@ -18972,7 +18980,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -19008,7 +19016,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -19042,7 +19050,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -19076,7 +19084,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -19104,7 +19112,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"24.12.0")).call(); } /** @@ -19132,7 +19140,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"24.12.0")); } /** @@ -19173,7 +19181,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.12.0")).call(); } /** @@ -19214,7 +19222,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.12.0")); } /** @@ -19266,7 +19274,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")).call(); } /** @@ -19318,7 +19326,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")); } /** @@ -19378,7 +19386,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")).call(); } /** @@ -19438,7 +19446,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")); } /** @@ -19485,7 +19493,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")).call(); } /** @@ -19532,7 +19540,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")); } /** @@ -19571,7 +19579,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")).call(); } /** @@ -19610,7 +19618,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")); } /** @@ -19633,7 +19641,7 @@ public Future taxRatesByPostalCodeAsync(String country, String pos */ public ArrayList createCountryCoefficients(CountryCoefficientsRequestEntity model) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/countryCoefficients"); - return ((RestCall>)restCallFactory.createRestCall("put", path, model, new TypeToken>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("put", path, model, new TypeToken>(){},"24.12.0")).call(); } /** @@ -19656,7 +19664,7 @@ public ArrayList createCountryCoefficients(Cou */ public Future> createCountryCoefficientsAsync(CountryCoefficientsRequestEntity model) { AvaTaxPath path = new AvaTaxPath("/api/v2/countryCoefficients"); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("put", path, model, new TypeToken>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("put", path, model, new TypeToken>(){},"24.12.0")); } /** @@ -19688,7 +19696,7 @@ public Future> createCountryCoeffici 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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"24.12.0")).call(); } /** @@ -19720,7 +19728,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"24.12.0")); } /** @@ -19753,7 +19761,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -19786,7 +19794,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -19819,7 +19827,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")).call(); } /** @@ -19852,7 +19860,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")); } /** @@ -19879,7 +19887,7 @@ public FetchResult listCountryCoefficients(String cou path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -19906,7 +19914,7 @@ public Future> listCountryCoefficientsAsy path.addQuery("$top", top); path.addQuery("$skip", skip); path.addQuery("$orderBy", orderBy); - return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -19950,7 +19958,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -19994,7 +20002,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -20036,7 +20044,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -20078,7 +20086,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -20112,7 +20120,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"24.12.0")).call(); } /** @@ -20146,7 +20154,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"24.12.0")); } /** @@ -20187,7 +20195,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.12.0")).call(); } /** @@ -20228,7 +20236,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.12.0")); } /** @@ -20284,7 +20292,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.12.0")).call(); } /** @@ -20340,7 +20348,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.12.0")); } /** @@ -20384,7 +20392,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")).call(); } /** @@ -20428,7 +20436,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")); } /** @@ -20474,7 +20482,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")).call(); } /** @@ -20520,7 +20528,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")); } /** @@ -20545,7 +20553,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.12.0")).call(); } /** @@ -20570,7 +20578,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.12.0")); } /** @@ -20626,7 +20634,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.12.0")).call(); } /** @@ -20682,7 +20690,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.12.0")); } /** @@ -20736,7 +20744,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.12.0")).call(); } /** @@ -20790,7 +20798,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.12.0")); } /** @@ -20846,7 +20854,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.12.0")).call(); } /** @@ -20902,7 +20910,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.12.0")); } /** @@ -20965,7 +20973,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.12.0")).call(); } /** @@ -21028,7 +21036,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.12.0")); } /** @@ -21066,7 +21074,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.12.0")).call(); } /** @@ -21104,7 +21112,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.12.0")); } /** @@ -21124,7 +21132,7 @@ public Future deleteLinesAsync(String include, RemoveTransacti public VarianceResponseModel getAllVarianceReportByCompanyCode(String companyCode) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyCode}/AllVariance"); path.applyField("companyCode", companyCode); - return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")).call(); } /** @@ -21144,7 +21152,7 @@ public VarianceResponseModel getAllVarianceReportByCompanyCode(String companyCod public Future getAllVarianceReportByCompanyCodeAsync(String companyCode) { AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyCode}/AllVariance"); path.applyField("companyCode", companyCode); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")); } /** @@ -21196,7 +21204,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")).call(); } /** @@ -21248,7 +21256,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")); } /** @@ -21282,7 +21290,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")).call(); } /** @@ -21316,7 +21324,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")); } /** @@ -21354,7 +21362,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")).call(); } /** @@ -21392,7 +21400,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")); } /** @@ -21414,7 +21422,7 @@ public VarianceResponseModel getVarianceReportByCompanyCodeByTransactionId(Strin AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyCode}/transactions/{transactionId}/variance"); path.applyField("companyCode", companyCode); path.applyField("transactionId", transactionId); - return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")).call(); } /** @@ -21436,7 +21444,7 @@ public Future getVarianceReportByCompanyCodeByTransaction AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyCode}/transactions/{transactionId}/variance"); path.applyField("companyCode", companyCode); path.applyField("transactionId", transactionId); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")); } /** @@ -21497,7 +21505,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -21558,7 +21566,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -21614,7 +21622,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.12.0")).call(); } /** @@ -21670,7 +21678,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.12.0")); } /** @@ -21738,7 +21746,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.12.0")).call(); } /** @@ -21806,7 +21814,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.12.0")); } /** @@ -21860,7 +21868,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.12.0")).call(); } /** @@ -21914,7 +21922,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.12.0")); } /** @@ -21962,7 +21970,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, null, new TypeToken(){},"24.12.0")).call(); } /** @@ -22010,7 +22018,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, null, new TypeToken(){},"24.12.0")); } /** @@ -22055,7 +22063,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, null, new TypeToken(){},"24.12.0")).call(); } /** @@ -22100,7 +22108,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, null, new TypeToken(){},"24.12.0")); } /** @@ -22121,7 +22129,7 @@ public Future unvoidTransactionAsync(String companyCode, Strin public VarianceResponseModel varianceReport(String companyCode, ArrayList model) throws Exception { AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyCode}/variance"); path.applyField("companyCode", companyCode); - return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.12.0")).call(); } /** @@ -22142,7 +22150,7 @@ public VarianceResponseModel varianceReport(String companyCode, ArrayList varianceReportAsync(String companyCode, ArrayList model) { AvaTaxPath path = new AvaTaxPath("/api/v2/companies/{companyCode}/variance"); path.applyField("companyCode", companyCode); - return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.12.0")); } /** @@ -22195,7 +22203,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.12.0")).call(); } /** @@ -22248,7 +22256,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.12.0")); } /** @@ -22303,7 +22311,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.12.0")).call(); } /** @@ -22358,7 +22366,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.12.0")); } /** @@ -22380,7 +22388,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"24.12.0")).call(); } /** @@ -22402,7 +22410,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"24.12.0")); } /** @@ -22424,7 +22432,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -22446,7 +22454,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -22469,7 +22477,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")).call(); } /** @@ -22492,7 +22500,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")); } /** @@ -22526,7 +22534,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -22560,7 +22568,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -22592,7 +22600,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -22624,7 +22632,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -22650,7 +22658,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"24.12.0")).call(); } /** @@ -22676,7 +22684,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"24.12.0")); } /** @@ -22698,7 +22706,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -22720,7 +22728,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -22744,7 +22752,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -22768,7 +22776,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -22791,7 +22799,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.12.0")).call(); } /** @@ -22814,7 +22822,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("post", path, model, new TypeToken(){},"24.12.0")); } /** @@ -22838,7 +22846,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"24.12.0")).call(); } /** @@ -22862,7 +22870,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"24.12.0")); } /** @@ -22890,7 +22898,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"24.12.0")).call(); } /** @@ -22918,7 +22926,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("post", path, model, new TypeToken>(){},"24.12.0")); } /** @@ -22944,7 +22952,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -22970,7 +22978,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("delete", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -22998,7 +23006,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")).call(); } /** @@ -23026,7 +23034,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")); } /** @@ -23061,7 +23069,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")).call(); } /** @@ -23096,7 +23104,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")); } /** @@ -23136,7 +23144,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -23176,7 +23184,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -23216,7 +23224,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -23256,7 +23264,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -23281,7 +23289,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"24.12.0")).call(); } /** @@ -23306,7 +23314,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("put", path, model, new TypeToken(){},"24.12.0")); } /** @@ -23327,7 +23335,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")).call(); } /** @@ -23348,7 +23356,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")); } /** @@ -23367,7 +23375,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>(){},"24.11.2")).call(); + return ((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")).call(); } /** @@ -23386,7 +23394,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>(){},"24.11.2")); + return this.threadPool.submit((RestCall>)restCallFactory.createRestCall("get", path, null, new TypeToken>(){},"24.12.0")); } /** @@ -23418,7 +23426,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(){},"24.11.2")).call(); + return ((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.0")).call(); } /** @@ -23450,7 +23458,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(){},"24.11.2")); + return this.threadPool.submit((RestCall)restCallFactory.createRestCall("get", path, null, new TypeToken(){},"24.12.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 3de3300..4f42c8e 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 @@ -1551,6 +1551,11 @@ public enum ErrorCodeId { */ InvalidProductCodeFormat(1744), + /** + * + */ + InvalidCountryAssignment(1745), + /** * SendSales API errors */ @@ -1957,6 +1962,16 @@ public enum ErrorCodeId { */ DuplicateSystemAndCountryForItem(3008), + /** + * + */ + InvalidHsCodeClassificationStatusOverride(3009), + + /** + * Occurs when the field name provided in the request isn't valid. + */ + InvalidField(3010), + /** * Avalara Gateway errors: */ diff --git a/src/main/java/net/avalara/avatax/rest/client/models/FilingReturnModel.java b/src/main/java/net/avalara/avatax/rest/client/models/FilingReturnModel.java index 913f6e0..4b87c00 100644 --- a/src/main/java/net/avalara/avatax/rest/client/models/FilingReturnModel.java +++ b/src/main/java/net/avalara/avatax/rest/client/models/FilingReturnModel.java @@ -350,6 +350,26 @@ public void setFormCode(String value) { this.formCode = value; } + private String taxFormCode; + + /** + * Getter for taxFormCode + * + * The unique code of the form, prefixed by the country code. + */ + public String getTaxFormCode() { + return this.taxFormCode; + } + + /** + * Setter for taxFormCode + * + * The unique code of the form, prefixed by the country code. + */ + public void setTaxFormCode(String value) { + this.taxFormCode = value; + } + private String description; /** diff --git a/src/main/java/net/avalara/avatax/rest/client/models/FilingReturnModelBasic.java b/src/main/java/net/avalara/avatax/rest/client/models/FilingReturnModelBasic.java index f64fe72..f3cd7be 100644 --- a/src/main/java/net/avalara/avatax/rest/client/models/FilingReturnModelBasic.java +++ b/src/main/java/net/avalara/avatax/rest/client/models/FilingReturnModelBasic.java @@ -398,6 +398,26 @@ public void setFormCode(String value) { this.formCode = value; } + private String taxFormCode; + + /** + * Getter for taxFormCode + * + * The unique code of the form, prefixed by the country code. + */ + public String getTaxFormCode() { + return this.taxFormCode; + } + + /** + * Setter for taxFormCode + * + * The unique code of the form, prefixed by the country code. + */ + public void setTaxFormCode(String value) { + this.taxFormCode = value; + } + private String description; /** diff --git a/src/main/java/net/avalara/avatax/rest/client/models/MultiTaxFilingReturnModel.java b/src/main/java/net/avalara/avatax/rest/client/models/MultiTaxFilingReturnModel.java index 9ece36e..27f0b32 100644 --- a/src/main/java/net/avalara/avatax/rest/client/models/MultiTaxFilingReturnModel.java +++ b/src/main/java/net/avalara/avatax/rest/client/models/MultiTaxFilingReturnModel.java @@ -190,6 +190,26 @@ public void setFormCode(String value) { this.formCode = value; } + private String taxFormCode; + + /** + * Getter for taxFormCode + * + * The unique code of the form, prefixed by the country code. + */ + public String getTaxFormCode() { + return this.taxFormCode; + } + + /** + * Setter for taxFormCode + * + * The unique code of the form, prefixed by the country code. + */ + public void setTaxFormCode(String value) { + this.taxFormCode = value; + } + private String description; /**