import type * as Brevo from "../../../../index.js";
/**
 * @example
 *     {
 *         identifier: "identifier"
 *     }
 */
export interface GetContactInfoRequest {
    /** Email (urlencoded) OR ID of the contact OR its SMS attribute value OR EXT_ID attribute (urlencoded) */
    identifier: Brevo.GetContactInfoRequestIdentifier;
    /** email_id for Email, phone_id for SMS attribute, contact_id for ID of the contact, ext_id for EXT_ID attribute, whatsapp_id for WHATSAPP attribute, landline_number_id for LANDLINE_NUMBER attribute */
    identifierType?: Brevo.GetContactInfoRequestIdentifierType;
    /** **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. */
    endDate?: string;
}
