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