Interface WallCreateCommentParams

interface WallCreateCommentParams {
    attachments?: string | string[];
    from_group?: number;
    guid?: string;
    message?: string;
    owner_id?: number;
    post_id: number;
    reply_to_comment?: number;
    sticker_id?: number;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

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

Group ID.

guid?: string

Unique identifier to avoid repeated comments.

message?: string

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

owner_id?: number

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

post_id: number

Post ID.

reply_to_comment?: number

ID of comment to reply.

sticker_id?: number

Sticker ID.

Generated using TypeDoc