import type * as Square from "../index"; /** * Published when a Device is created. */ export interface DeviceCreatedEvent { /** The merchant the newly created device belongs to. */ merchantId?: string | null; /** The type of event this represents. The value is `"device.created"`. */ type?: string | null; /** A UUID that uniquely identifies this device creation event. */ eventId?: string | null; /** The time when the device creation event was first created, in RFC 3339 format. */ createdAt?: string; /** The metadata associated with the device creation event. */ data?: Square.DeviceCreatedEventData; }