Member Junction
    Preparing search index...
    interface FacebookPost {
        attachments?: {
            data: {
                description?: string;
                media?: {
                    image?: { height: number; src: string; width: number };
                    source?: string;
                };
                title?: string;
                type: string;
                url?: string;
            }[];
        };
        comments?: { summary: { total_count: number } };
        created_time: string;
        from?: { id: string; name: string };
        id: string;
        insights?: { data: { name: string; values: { value: number }[] }[] };
        message?: string;
        permalink_url?: string;
        reactions?: { summary: { total_count: number } };
        shares?: { count: number };
        story?: string;
        updated_time: string;
    }
    Index

    Properties

    attachments?: {
        data: {
            description?: string;
            media?: {
                image?: { height: number; src: string; width: number };
                source?: string;
            };
            title?: string;
            type: string;
            url?: string;
        }[];
    }
    comments?: { summary: { total_count: number } }
    created_time: string
    from?: { id: string; name: string }
    id: string
    insights?: { data: { name: string; values: { value: number }[] }[] }
    message?: string
    permalink_url?: string
    reactions?: { summary: { total_count: number } }
    shares?: { count: number }

    Optionalstory

    story?: string
    updated_time: string