Interface WallEditAdsStealthParams

interface WallEditAdsStealthParams {
    attachments?: string | string[];
    lat?: number;
    link_button?: string;
    link_image?: string;
    link_title?: string;
    link_video?: string;
    long?: number;
    message?: string;
    owner_id?: number;
    place_id?: number;
    post_id: number;
    signed?: number | boolean;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

attachments?: string | string[]
lat?: number

Geographical latitude of a check-in, in degrees (from -90 to 90).

link_button?: string

Link button ID

link_image?: string

Link image url

link_title?: string

Link title

link_video?: string

Link video ID in format "_"

long?: number

Geographical longitude of a check-in, in degrees (from -180 to 180).

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

ID of the location where the user was tagged.

post_id: number

Post ID. Used for publishing of scheduled and suggested posts.

signed?: number | boolean

Only for posts in communities with 'from_group' set to '1': '1' - post will be signed with the name of the posting user, '0' - post will not be signed (default)

Generated using TypeDoc