Interface WallEditParams

interface WallEditParams {
    attachments?: string | string[];
    close_comments?: number | boolean;
    copyright?: string;
    donut_paid_duration?: number;
    friends_only?: number | boolean;
    lat?: number;
    long?: number;
    mark_as_ads?: number | boolean;
    message?: string;
    owner_id?: number;
    place_id?: number;
    post_id: number;
    poster_bkg_access_hash?: string;
    poster_bkg_id?: number;
    poster_bkg_owner_id?: number;
    primary_attachments?: string | string[];
    publish_date?: number;
    services?: string;
    signed?: number | boolean;
    topic_id?: 0 | 1 | 16 | 32 | 7 | 12 | 19 | 21 | 23 | 25 | 43 | 26;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

attachments?: string | string[]
close_comments?: number | boolean
copyright?: string
donut_paid_duration?: number
friends_only?: number | boolean
lat?: number
long?: number
mark_as_ads?: number | boolean
message?: string

(Required if 'attachments' is not set.) Text of the post.

owner_id?: number

User ID or community ID. Use a negative value to designate a community ID.

place_id?: number
post_id: number
poster_bkg_access_hash?: string
poster_bkg_id?: number
poster_bkg_owner_id?: number
primary_attachments?: string | string[]
publish_date?: number
services?: string
signed?: number | boolean
topic_id?: 0 | 1 | 16 | 32 | 7 | 12 | 19 | 21 | 23 | 25 | 43 | 26

Topic ID. Allowed values can be obtained from newsfeed.getPostTopics method

Generated using TypeDoc