import type * as Square from "../index"; export interface DeviceCreatedEventData { /** The type of the event data object. The value is `"device"`. */ type?: string | null; /** The ID of the device. */ id?: string; /** An object containing the created device. */ object?: Square.DeviceCreatedEventObject; }