Mayson Monorepo Documentation
    Preparing search index...

    Interface FormattedNewsArticle

    News article formatted for consumption

    interface FormattedNewsArticle {
        id: string;
        title: string;
        source: string;
        publishedAt: string;
        url: string;
        summary?: string;
        sentiment?: "neutral" | "positive" | "negative";
        symbol?: string;
    }
    Index

    Properties

    id: string
    title: string
    source: string
    publishedAt: string
    url: string
    summary?: string
    sentiment?: "neutral" | "positive" | "negative"
    symbol?: string