home-assistant-futurehome/futurehome/src/fimp/vinculum_pd7_device.ts

15 lines
375 B
TypeScript
Raw Normal View History

export type VinculumPd7Device = {
client?: {
// User-defined device name
name?: string | null,
} | null,
id: number,
services?: any,
type?: {
// User-defined device type (e.g. "sensor", "chargepoint", or "light")
type?: string | null,
// User-defined device subtype (e.g. "presence" or "car_charger")
subtype?: string | null,
} | null,
};