import { DeviceEntity, DeviceRunnerJobCommand, GroupEntity, OrganizationEntity, UserEntity } from '../../..'; export declare class DeviceRunnerJobBase { /** * The purpose of this task */ purpose?: string; commands?: DeviceRunnerJobCommand[]; /** * Indicate a date after which the task becomes available */ notBefore?: Date; device?: DeviceEntity; organization?: OrganizationEntity; groups?: GroupEntity[]; createdByUser?: UserEntity; }