batchInventoryChange method

Future<InventoryResponse> batchInventoryChange({
  1. required BatchInventoryChangeRequest request,
  2. String? authToken,
})

Applies adjustments and counts to the provided item quantities.

On success: returns the current calculated counts for all objects referenced in the request. On failure: returns a list of related errors.

Implementation

Future<InventoryResponse> batchInventoryChange({
  required BatchInventoryChangeRequest request,
  String? authToken,
}) async {
  return _inventoryService.batchInventoryChange(request: request, authToken: authToken);
}