Member Junction
    Preparing search index...

    Result of a SendToAudience call. Mirrors the per-message MessageResult[] from SendMessages and additionally surfaces the audience-resolution metadata so the caller can render an "Audience Summary" panel (per mockup 21) without re-running the resolve.

    interface SendToAudienceResult {
        PreviewOnly: boolean;
        Results: MessageResult[];
        Skipped: AudienceSkipDetail[];
        SkippedCount: number;
        TotalAudienceSize: number;
        WillReceiveCount: number;
    }
    Index

    Properties

    PreviewOnly: boolean

    When previewOnly is true, Results is empty and this flag indicates we never dispatched.

    Results: MessageResult[]
    SkippedCount: number
    TotalAudienceSize: number
    WillReceiveCount: number