import { IEntity } from "./entity"; import { IDevice } from "./device"; import { DevicePlanMasterFlag } from "./device_plan_master_flag"; /** The master flag of a device. */ export interface IDeviceMasterFlag extends IEntity { /** Gets a value indicating the timestamp of master flag. */ dateTime?: Date; /** * @inheritdoc */ device?: IDevice; /** Gets device id. */ deviceId?: string; /** Gets a value indicating whether master flag is enabled. */ enabled?: boolean; /** Gets a value indicating device master flag. */ masterFlag?: DevicePlanMasterFlag; } //# sourceMappingURL=device_master_flag.d.ts.map