Interface MarketCreateCommentParams

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

Indexable

[key: string]: any

Properties

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

'1' - comment will be published on behalf of a community, '0' - on behalf of a user (by default).

guid?: string

Random value to avoid resending one comment.

item_id: number

Item ID.

message?: string

Comment text (required if 'attachments' parameter is not specified)

owner_id: number

ID of an item owner community.

reply_to_comment?: number

ID of a comment to reply with current comment to.

sticker_id?: number

Sticker ID.

Generated using TypeDoc