import type * as Square from "../index"; /** * Represents a response for an individual upsert request in a [BulkDeleteBookingCustomAttributes](api-endpoint:BookingCustomAttributes-BulkDeleteBookingCustomAttributes) operation. */ export interface BookingCustomAttributeDeleteResponse { /** The ID of the [booking](entity:Booking) associated with the custom attribute. */ bookingId?: string; /** Any errors that occurred while processing the individual request. */ errors?: Square.Error_[]; }