Interface DocsEditParams

interface DocsEditParams {
    doc_id: number;
    owner_id?: number;
    tags?: string | string[];
    title: string;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

doc_id: number

Document ID.

owner_id?: number

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

tags?: string | string[]
title: string

Document title.

Generated using TypeDoc