@gsb-core/core
Version:
GSB core services and classes for platform-independent web applications
26 lines (25 loc) • 743 B
TypeScript
import { GsbUser } from './gsb-user.model';
import { GsbWorkflow } from './gsb-workflow.model';
import { GsbWfFunction } from './gsb-function.model';
import { GsbModule } from './gsb-module.model';
export declare class GsbRecurringJob {
_entDefName?: string;
id?: string;
createDate?: Date;
module_id?: string;
isActive?: boolean;
function_id?: string;
title?: string;
workflow_id?: string;
cronExpression?: string;
name?: string;
lastUpdateDate?: Date;
lastUpdatedBy_id?: string;
createdBy_id?: string;
lastUpdatedBy?: GsbUser;
createdBy?: GsbUser;
workflow?: GsbWorkflow;
function?: GsbWfFunction;
module?: GsbModule;
constructor(obj?: Partial<GsbRecurringJob>);
}