Content Models
Content Types
interface ContentType {
id: number;
campaignId: number;
type: string;
title: string;
zone: string;
}
Custom Content
interface CustomContent extends ContentType {
  type: 'custom';
  content: string;
}
Featured Items Content
interface FeaturedItemsContent extends ContentType {
type: 'featured-items';
items: Array<SearchResultsItem>;
}
For more information, see Search Models.
Image Content
Popular Queries Content
Â
Custom Widgets
Content Zones
Â
Â
Â