import { ActionStatusEnum } from './ActionStatusEnum';
/** Device action */
export interface DeviceAction {
    /** The id of the action */
    actionId: string;
    /** Date of creation of the action */
    createdAt: string;
    /** The details of the action */
    details: string;
    /** The name of the action */
    name: string;
    /** The status of the action */
    status: ActionStatusEnum;
    /** Date of execution of the action */
    todoDate: string;
    /** Last time the action was updated */
    updatedAt: string;
}
//# sourceMappingURL=DeviceAction.d.ts.map