import type * as Square from "../index"; export interface ListDevicesResponse { /** Information about errors that occurred during the request. */ errors?: Square.Error_[]; /** The requested list of `Device` objects. */ devices?: Square.Device[]; /** * The pagination cursor to be used in a subsequent request. If empty, * this is the final response. * See [Pagination](https://developer.squareup.com/docs/build-basics/common-api-patterns/pagination) for more information. */ cursor?: string; }