Member Junction
    Preparing search index...

    Represents a formatted response ready to send back to the platform. Contains both a plain text fallback and platform-specific rich format.

    interface FormattedResponse {
        AgentIdentity?: AgentIdentity;
        PlainText: string;
        RichPayload: Record<string, unknown>;
    }
    Index

    Properties

    AgentIdentity?: AgentIdentity

    Optional agent identity for per-message branding.

    PlainText: string

    Plain text fallback (used by screen readers and notification previews).

    RichPayload: Record<string, unknown>

    Platform-specific rich format payload.

    • Slack: { blocks: BlockKitBlock[] }
    • Teams: Adaptive Card JSON