Official Plugins (Kuzzle v2.x)
Device Manager v0.x
2

DeviceContent #

The DeviceContent type represents the _source property of a device document.

Copied to clipboard!
export type DeviceContent = {
  reference: string;
  model: string;
  measures: DeviceMeasures;
  metadata?: JSONObject;
  qos?: JSONObject;
  assetId?: string;
  tenantId?: string;

  _kuzzle_info?: {
    author?: string,
    createdAt?: number,
    updater?: string | null,
    updatedAt?: number | null
  }
}