import type * as Square from "../index"; /** * Represents a [RetrieveBookingCustomAttribute](api-endpoint:BookingCustomAttributes-RetrieveBookingCustomAttribute) response. * Either `custom_attribute_definition` or `errors` is present in the response. */ export interface RetrieveBookingCustomAttributeResponse { /** * The retrieved custom attribute. If `with_definition` was set to `true` in the request, * the custom attribute definition is returned in the `definition` field. */ customAttribute?: Square.CustomAttribute; /** Any errors that occurred during the request. */ errors?: Square.Error_[]; }