{@code
+ * CompletableFuture> result = apiRoot
+ * .withProjectKey("{projectKey}")
+ * .inStoreKeyWithStoreKeyValue("{storeKey}")
+ * .businessUnits()
+ * .withId("{ID}")
+ * .delete()
+ * .withVersion(version)
+ * .execute()
+ * }
+ * {@code
+ * CompletableFuture> result = apiRoot
+ * .withProjectKey("{projectKey}")
+ * .inStoreKeyWithStoreKeyValue("{storeKey}")
+ * .businessUnits()
+ * .withId("{ID}")
+ * .get()
+ * .execute()
+ * }
+ * Checks if a BusinessUnit exists for a given id
. Returns a 200 OK
status if the BusinessUnit exists or a 404 Not Found
otherwise.
{@code
+ * CompletableFuture> result = apiRoot
+ * .withProjectKey("{projectKey}")
+ * .inStoreKeyWithStoreKeyValue("{storeKey}")
+ * .businessUnits()
+ * .withId("{ID}")
+ * .head()
+ * .execute()
+ * }
+ * {@code
+ * CompletableFuture> result = apiRoot
+ * .withProjectKey("{projectKey}")
+ * .inStoreKeyWithStoreKeyValue("{storeKey}")
+ * .businessUnits()
+ * .withId("{ID}")
+ * .post(null)
+ * .execute()
+ * }
+ * {@code
+ * CompletableFuture> result = apiRoot
+ * .withProjectKey("{projectKey}")
+ * .inStoreKeyWithStoreKeyValue("{storeKey}")
+ * .businessUnits()
+ * .withId("{ID}")
+ * .post("")
+ * .execute()
+ * }
+ * {@code
+ * CompletableFuture> result = apiRoot
+ * .withProjectKey("{projectKey}")
+ * .inStoreKeyWithStoreKeyValue("{storeKey}")
+ * .businessUnits()
+ * .get()
+ * .execute()
+ * }
+ * Checks if a BusinessUnit exists for a given Query Predicate. Returns a 200 OK
status if any BusinessUnits match the Query Predicate or a 404 Not Found
otherwise.
{@code
+ * CompletableFuture> result = apiRoot
+ * .withProjectKey("{projectKey}")
+ * .inStoreKeyWithStoreKeyValue("{storeKey}")
+ * .businessUnits()
+ * .head()
+ * .execute()
+ * }
+ *