import { _Device, _UnmarshalledDevice } from "./_Device"; /** * _DeviceEvent shape */ export interface _DeviceEvent { /** *

An object representing the device associated with the event.

*/ Device?: _Device; /** *

A serialized JSON object representing the device-type specific event.

*/ StdEvent?: string; } export interface _UnmarshalledDeviceEvent extends _DeviceEvent { /** *

An object representing the device associated with the event.

*/ Device?: _UnmarshalledDevice; }