Interface PhotosCreateCommentParams

interface PhotosCreateCommentParams {
    access_key?: string;
    attachments?: string | string[];
    from_group?: number | boolean;
    guid?: string;
    message?: string;
    owner_id?: number;
    photo_id: number;
    reply_to_comment?: number;
    sticker_id?: number;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

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

'1' - to post a comment from the community

guid?: string
message?: string

Comment text.

owner_id?: number

ID of the user or community that owns the photo.

photo_id: number

Photo ID.

reply_to_comment?: number
sticker_id?: number

Generated using TypeDoc