import type * as Square from "../index"; export interface Device { /** * A synthetic identifier for the device. The identifier includes a standardized prefix and * is otherwise an opaque id generated from key device fields. */ id?: string; /** A collection of DeviceAttributes representing the device. */ attributes: Square.DeviceAttributes; /** A list of components applicable to the device. */ components?: Square.Component[] | null; /** The current status of the device. */ status?: Square.DeviceStatus; }