import type * as Square from "../index"; export interface SearchCatalogObjectsResponse { /** Any errors that occurred during the request. */ errors?: Square.Error_[]; /** * The pagination cursor to be used in a subsequent request. If unset, this is the final response. * See [Pagination](https://developer.squareup.com/docs/build-basics/common-api-patterns/pagination) for more information. */ cursor?: string; /** The CatalogObjects returned. */ objects?: Square.CatalogObject[]; /** A list of CatalogObjects referenced by the objects in the `objects` field. */ relatedObjects?: Square.CatalogObject[]; /** * When the associated product catalog was last updated. Will * match the value for `end_time` or `cursor` if either field is included in the `SearchCatalog` request. */ latestTime?: string; /** A list of [CatalogObject](entity:CatalogObject)s referenced by the object in the `objects` field and specifically requested. */ includedResources?: Square.IncludedResources; }