Interface NotesGetByIdParams

interface NotesGetByIdParams {
    need_wiki?: number | boolean;
    note_id: number;
    owner_id?: number;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

need_wiki?: number | boolean
note_id: number

Note ID.

owner_id?: number

Note owner ID.

Generated using TypeDoc