All Downloads are FREE. Search and download functionalities are using the official Maven repository.

src.app.core.model.campaign.campaign.model.ts Maven / Gradle / Ivy

There is a newer version: 3.0.0
Show newest version
import { CampaignExecutionReport } from '.';

export class Campaign {

    constructor(public id?: number,
        public title: string = '',
        public description: string = '',
        public scenarioIds: Array = [],
        public campaignExecutionReports: Array = [],
        public computedParameters: Map = new Map(),
        public environment: string = '',
        public parallelRun?: false,
        public retryAuto?: false,
        public datasetId?: string,
        public tags: Array = []) {
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy