import type * as Square from "../index"; /** * Published when a booking [custom attribute](entity:CustomAttribute) * associated with a [custom attribute definition](entity:CustomAttributeDefinition) that is * owned by the subscribing application is deleted. * Subscribe to this event to be notified * when your application deletes a booking custom attribute. */ export interface BookingCustomAttributeOwnedDeletedEvent { /** The ID of the seller associated with the event that triggered the event notification. */ merchantId?: string | null; /** The type of this event. The value is `"booking.custom_attribute.owned.deleted"`. */ type?: string | null; /** A unique ID for the event notification. */ eventId?: string | null; /** The timestamp that indicates when the event notification was created, in RFC 3339 format. */ createdAt?: string; /** The data associated with the event that triggered the event notification. */ data?: Square.CustomAttributeEventData; }