Interface WallAttachedNote

interface WallAttachedNote {
    can_comment: number;
    comments: number;
    date: number;
    id: number;
    owner_id: number;
    privacy_comment: string[];
    privacy_view: string[];
    read_comments: number;
    text: string;
    text_wiki: string;
    title: string;
    view_url: string;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

can_comment: number
comments: number

Comments number

date: number

Date when the note has been created in Unixtime

id: number

Note ID

owner_id: number

Note owner's ID

privacy_comment: string[]
privacy_view: string[]
read_comments: number

Read comments number

text: string

Note text

text_wiki: string

Note wiki text

title: string

Note title

view_url: string

URL of the page with note preview

Generated using TypeDoc