Interface NotesGetCommentsParams

interface NotesGetCommentsParams {
    count?: number;
    note_id: number;
    offset?: number;
    owner_id?: number;
    sort?: 0 | 1;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

count?: number

Number of comments to return.

note_id: number

Note ID.

offset?: number
owner_id?: number

Note owner ID.

sort?: 0 | 1

Generated using TypeDoc