Interface WallWallpost

interface WallWallpost {
    access_key: string;
    attachments: WallWallpostAttachment[];
    date: number;
    deleted_details: string;
    deleted_reason: string;
    edited: number;
    from_id: number;
    id: number;
    is_archived: number | boolean;
    is_deleted: number | boolean;
    is_favorite: number | boolean;
    owner_id: number;
    parents_stack: number[];
    post_id: number;
    signer_id: number;
    text: string;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

access_key: string

Access key to private object

attachments: WallWallpostAttachment[]
date: number

Date of publishing in Unixtime

deleted_details: string
deleted_reason: string
edited: number

Date of editing in Unixtime

from_id: number

Post author ID

id: number

Post ID

is_archived: number | boolean

Is post archived, only for post owners

is_deleted: number | boolean
is_favorite: number | boolean

Information whether the post in favorites list

owner_id: number

Wall owner's ID

parents_stack: number[]
post_id: number

If post type 'reply', contains original post ID

signer_id: number

Post signer ID

text: string

Post text

Generated using TypeDoc