/
Content Models
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
, multiple selections available,
Related content
Autocomplete Models
Autocomplete Models
More like this
Search Models
Search Models
More like this
Global Models
Global Models
More like this
Recommendation Objects
Recommendation Objects
More like this
Content Zone Component
Content Zone Component
More like this
Featured Items Content Component
Featured Items Content Component
More like this