systemprompt_content/models/
mod.rs1pub mod builders;
2pub mod content;
3pub mod content_error;
4pub mod link;
5pub mod search;
6
7pub use builders::{
8 CategoryIdUpdate, CreateContentParams, CreateLinkParams, RecordClickParams, TrackClickParams,
9 UpdateContentParams,
10};
11pub use content::{
12 Content, ContentKind, ContentLinkMetadata, ContentMetadata, ContentSummary, IngestionOptions,
13 IngestionReport, IngestionSource, Tag,
14};
15pub use content_error::ContentValidationError;
16pub use link::{
17 CampaignLink, CampaignPerformance, ContentJourneyNode, DestinationType, LinkClick,
18 LinkPerformance, LinkType, UtmParams,
19};
20pub use search::{SearchFilters, SearchRequest, SearchResponse, SearchResult};