import type * as Square from "../index"; export interface UpsertCatalogObjectResponse { /** Any errors that occurred during the request. */ errors?: Square.Error_[]; /** The successfully created or updated CatalogObject. */ catalogObject?: Square.CatalogObject; /** The mapping between client and server IDs for this upsert. */ idMappings?: Square.CatalogIdMapping[]; }