/** Fax campaigns */
export interface FaxCampaign {
    /** The count of failed faxes in the campaign */
    countFailed: number;
    /** The count of success faxes in the campaign */
    countSuccess: number;
    /** The total count of faxes in the campaign */
    countTotal: number;
    /** The end date of the fax campaign */
    dateEnd?: string;
    /** The start date of the fax campaign */
    dateStart?: string;
    /** The id of the fax campaign */
    id: number;
    /** The name of the fax campaign */
    name: string;
    /** The reference of the fax campaign */
    reference: string;
    /** The status of the fax campaign */
    status: string;
}
//# sourceMappingURL=FaxCampaign.d.ts.map