Interface PhotosEditCommentParams

interface PhotosEditCommentParams {
    attachments?: string | string[];
    comment_id: number;
    message?: string;
    owner_id?: number;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

attachments?: string | string[]
comment_id: number

Comment ID.

message?: string

New text of the comment.

owner_id?: number

ID of the user or community that owns the photo.

Generated using TypeDoc