import type * as Square from "../index"; /** * Represents an individual delete response in a [BulkDeleteLocationCustomAttributes](api-endpoint:LocationCustomAttributes-BulkDeleteLocationCustomAttributes) * request. */ export interface BulkDeleteLocationCustomAttributesResponseLocationCustomAttributeDeleteResponse { /** The ID of the location associated with the custom attribute. */ locationId?: string; /** Errors that occurred while processing the individual LocationCustomAttributeDeleteRequest request */ errors?: Square.Error_[]; }