import type * as Square from "../index"; /** * Published when a Square Terminal has been paired with a * Terminal API client and the device_id of the paired Square Terminal is * available. */ export interface DeviceCodePairedEvent { /** The ID of the target merchant associated with the event. */ merchantId?: string | null; /** The ID of the target location associated with the event. */ locationId?: string | null; /** The type of event this represents, `"device.code.paired"`. */ 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.DeviceCodePairedEventData; }