import type * as Square from "../index"; export interface BatchGetInventoryChangesResponse { /** Any errors that occurred during the request. */ errors?: Square.Error_[]; /** * The current calculated inventory changes for the requested objects * and locations. */ changes?: Square.InventoryChange[]; /** * The pagination cursor to be used in a subsequent request. If unset, * this is the final response. * See the [Pagination](https://developer.squareup.com/docs/working-with-apis/pagination) guide for more information. */ cursor?: string; }