interface NexusPost {
    active_votes: {
        rshares: string | number;
        voter: string;
    }[];
    author: string;
    author_payout_value: string | Asset;
    author_role?: string;
    author_title?: string;
    beneficiaries: BeneficiaryRoute[];
    blacklists: [];
    body: string;
    category: string;
    children: number;
    community?: string;
    community_title?: string;
    created: string;
    curator_payout_value: string | Asset;
    depth: number;
    is_paidout: boolean;
    json_metadata: {
        app?: string;
        community?: string;
        description?: string;
        flow?: {
            pictures: {
                caption: string;
                id: number;
                mime: string;
                name: string;
                tags: string[];
                url: string;
            }[];
            tags: string[];
        };
        format?: string;
        image?: string[];
        links?: string[];
        tags?: string[];
        type?: string;
        users?: string[];
        video: {
            content: {
                description: string;
                tags: string[];
            };
            info: {
                author: string;
                duration: number;
                file: string;
                filesize: number;
                firstUpload: boolean;
                ipfs: null | string;
                ipfsThumbnail: null | string;
                lang: string;
                permlink: string;
                platform: string;
                sourceMap: {
                    format: string;
                    type: string;
                    url: string;
                }[];
                title: string;
                video_v2: null | string;
            };
        };
    };
    max_accepted_payout: string | Asset;
    net_rshares: string | number;
    parent_author?: string;
    parent_permlink?: string;
    payout: number;
    payout_at: string;
    pending_payout_value: string | Asset;
    percent_blurt: number;
    permlink: string;
    post_id: number;
    promoted: string | Asset;
    reblogged_by?: string[];
    replies: [];
    stats: {
        flag_weight: number;
        gray: boolean;
        hide: boolean;
        is_muted?: boolean;
        is_pinned?: boolean;
        referrer?: string;
        total_votes: number;
    };
    title: string;
    updated: string;
    url: string;
}

Properties

active_votes: {
    rshares: string | number;
    voter: string;
}[]
author: string
author_payout_value: string | Asset
author_role?: string
author_title?: string
beneficiaries: BeneficiaryRoute[]
blacklists: []
body: string
category: string
children: number
community?: string
community_title?: string
created: string
curator_payout_value: string | Asset
depth: number
is_paidout: boolean
json_metadata: {
    app?: string;
    community?: string;
    description?: string;
    flow?: {
        pictures: {
            caption: string;
            id: number;
            mime: string;
            name: string;
            tags: string[];
            url: string;
        }[];
        tags: string[];
    };
    format?: string;
    image?: string[];
    links?: string[];
    tags?: string[];
    type?: string;
    users?: string[];
    video: {
        content: {
            description: string;
            tags: string[];
        };
        info: {
            author: string;
            duration: number;
            file: string;
            filesize: number;
            firstUpload: boolean;
            ipfs: null | string;
            ipfsThumbnail: null | string;
            lang: string;
            permlink: string;
            platform: string;
            sourceMap: {
                format: string;
                type: string;
                url: string;
            }[];
            title: string;
            video_v2: null | string;
        };
    };
}
max_accepted_payout: string | Asset
net_rshares: string | number
parent_author?: string
parent_permlink?: string
payout: number
payout_at: string
pending_payout_value: string | Asset
percent_blurt: number
permlink: string
post_id: number
promoted: string | Asset
reblogged_by?: string[]
replies: []
stats: {
    flag_weight: number;
    gray: boolean;
    hide: boolean;
    is_muted?: boolean;
    is_pinned?: boolean;
    referrer?: string;
    total_votes: number;
}
title: string
updated: string
url: string