/** * Serializer for campaign exclusion requests. */ export type CampaignExclusion = { /** * ID of the campaign to exclude from */ campaign_id?: number; /** * Title of the campaign to exclude from */ campaign_title?: string; /** * Email address to exclude from the campaign */ email?: string; };