Interface MarketEditCommentParams

interface MarketEditCommentParams {
    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 comment text (required if 'attachments' are not specified), , 2048 symbols maximum.

owner_id: number

ID of an item owner community.

Generated using TypeDoc