Mayson Monorepo Documentation
    Preparing search index...

    Interface SendPriceAlertTask

    Payload for sending a price alert email

    interface SendPriceAlertTask {
        userId: string;
        email: string;
        symbol: string;
        currentPrice: number;
        targetPrice: number;
        direction: "above" | "below";
        percentChange: number;
    }
    Index

    Properties

    userId: string
    email: string
    symbol: string
    currentPrice: number
    targetPrice: number
    direction: "above" | "below"
    percentChange: number