import type * as Square from "../index"; /** * Published when a [TerminalCheckout](entity:TerminalCheckout) is updated. */ export interface TerminalCheckoutUpdatedEvent { /** The ID of the target merchant associated with the event. */ merchantId?: string | null; /** The type of event this represents, `"terminal.checkout.updated"`. */ type?: string | null; /** A unique ID for the event. */ eventId?: string | null; /** RFC 3339 timestamp of when the event was created. */ createdAt?: string; /** Data associated with the event. */ data?: Square.TerminalCheckoutUpdatedEventData; }