Interface IWallReplyAttachmentPayload

interface IWallReplyAttachmentPayload {
    attachments: any[];
    date: number;
    from_id: number;
    id: number;
    owner_id: number;
    parents_stack: number[];
    post_id: number;
    reply_to_comment: number;
    reply_to_user: number;
    text: string;
    thread: {
        can_post: boolean;
        count: number;
        groups_can_post: boolean;
        items: IWallReplyAttachmentPayload[];
        show_reply_button: boolean;
    };
}

Properties

attachments: any[]
date: number
from_id: number
id: number
owner_id: number
parents_stack: number[]
post_id: number
reply_to_comment: number
reply_to_user: number
text: string
thread: {
    can_post: boolean;
    count: number;
    groups_can_post: boolean;
    items: IWallReplyAttachmentPayload[];
    show_reply_button: boolean;
}

Type declaration

Generated using TypeDoc