Interface NotesEditParams

interface NotesEditParams {
    note_id: number;
    privacy_comment?: string | string[];
    privacy_view?: string | string[];
    text: string;
    title: string;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

note_id: number

Note ID.

privacy_comment?: string | string[]
privacy_view?: string | string[]
text: string

Note text.

title: string

Note title.

Generated using TypeDoc