import { IdentityDto } from './../shared/identity.dto'; import { EntityDto } from './../entity/entity.dto'; export declare class CampaignDto { clientId: string; identity: IdentityDto; entity: EntityDto; type: string; code: string; startDate: Date; endDate: Date; status: string; biller: string; budget: number; spend: number; precedence: number; errors?: any[]; constructor(d?: CampaignDto); }