import type * as Square from "../index"; /** * A batch of catalog objects. */ export interface CatalogObjectBatch { /** A list of CatalogObjects belonging to this batch. */ objects: Square.CatalogObject[]; }