useserde::Serialize;/// Represents a single news article for a ticker.
#[derive(Debug, Clone, PartialEq, Serialize)]pubstructNewsArticle{/// A unique identifier for the article.
pubuuid: String,
/// The headline of the article.
pubtitle: String,
/// The publisher of the article (e.g., "Reuters", "Associated Press").
pubpublisher:Option<String>,
/// A direct link to the article.
publink:Option<String>,
/// The Unix timestamp (in seconds) of when the article was published.
pubprovider_publish_time:i64,
}