import type * as Square from "../index"; export interface GetInventoryChangesResponse { /** Any errors that occurred during the request. */ errors?: Square.Error_[]; /** The set of inventory changes for the requested object 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; }