import type * as Square from "../index"; /** * Represents a [BulkUpsertBookingCustomAttributes](api-endpoint:BookingCustomAttributes-BulkUpsertBookingCustomAttributes) response, * which contains a map of responses that each corresponds to an individual upsert request. */ export interface BulkUpsertBookingCustomAttributesResponse { /** * A map of responses that correspond to individual upsert requests. Each response has the * same ID as the corresponding request and contains either a `booking_id` and `custom_attribute` or an `errors` field. */ values?: Record; /** Any errors that occurred during the request. */ errors?: Square.Error_[]; }