import type * as Brevo from "../../../../index.js";
/**
 * @example
 *     {
 *         identifier: "identifier"
 *     }
 */
export interface GetContactStatsRequest {
    /** Email (urlencoded) OR ID of the contact */
    identifier: Brevo.GetContactStatsRequestIdentifier;
    /** **Mandatory if endDate is used.** Starting date (YYYY-MM-DD) of the statistic events specific to campaigns. Must be lower than equal to endDate */
    startDate?: string;
    /** **Mandatory if startDate is used.** Ending date (YYYY-MM-DD) of the statistic events specific to campaigns. Must be greater than equal to startDate. Maximum difference between startDate and endDate should not be greater than 90 days */
    endDate?: string;
}
