Interface NotesAddParams

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

Indexable

[key: string]: any

Properties

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

Note text.

title: string

Note title.

Generated using TypeDoc