Interface MessageContent

Outbound message content — what the agent wants to send.

interface MessageContent {
    blocks: MessageContentBlock[];
    replyToMessageId?: string;
    platformOptions?: Record<string, unknown>;
}

Properties

Content blocks to send. At minimum one 'text' block.

replyToMessageId?: string

Reply to a specific message (platform threading).

platformOptions?: Record<string, unknown>

Platform-specific send options.