import type * as Brevo from "../../../../index.js";
/**
 * @example
 *     {
 *         identifier: "identifier"
 *     }
 */
export interface DeleteContactRequest {
    /** Email (urlencoded) OR ID of the contact OR EXT_ID attribute (urlencoded) */
    identifier: Brevo.DeleteContactRequestIdentifier;
    /** email_id for Email, contact_id for ID of the contact, ext_id for EXT_ID attribute, phone_id for SMS attribute, whatsapp_id for WHATSAPP attribute, landline_number_id for LANDLINE_NUMBER attribute */
    identifierType?: Brevo.DeleteContactRequestIdentifierType;
}
