import type * as Square from "../index"; export interface BatchGetCatalogObjectsResponse { /** Any errors that occurred during the request. */ errors?: Square.Error_[]; /** A list of [CatalogObject](entity:CatalogObject)s returned. */ objects?: Square.CatalogObject[]; /** A list of [CatalogObject](entity:CatalogObject)s referenced by the object in the `objects` field. */ relatedObjects?: Square.CatalogObject[]; /** A list of [CatalogObject](entity:CatalogObject)s referenced by the object in the `objects` field and specifically requested. */ includedResources?: Square.IncludedResources; }