Type Alias ChatMessagesSendChatMessageRequestBody

ChatMessagesSendChatMessageRequestBody: {
    at_items?: {
        at_contact?: string;
        at_type?: 1 | 2;
        end_position?: number;
        start_position?: number;
    }[];
    file_ids?: string[];
    interactive_cards?: { card_json?: string }[];
    message: string;
    reply_main_message_id?: string;
    rich_text?: {
        end_position?: number;
        format_attr?: string;
        format_type?:
            | "Bold"
            | "Italic"
            | "Strikethrough"
            | "BulletedList"
            | "NumberedList"
            | "Underline"
            | "FontSize"
            | "FontColor"
            | "BackgroundColor"
            | "LeftIndent"
            | "Paragraph"
            | "Quote"
            | "AddLink";
        start_position?: number;
    }[];
    scheduled_time?: string;
    to_channel?: string;
    to_contact?: string;
}