IAuthCommentAPI

interface IAuthCommentAPI : IPublicCommentAPI, Authable

Authenticated API for getting and manipulating comments information.

Also provides access to public API

Functions

Link copied to clipboard
abstract suspend fun getCommentVotes(commentID: Long): Map<String, Liker>

Получить список лайкнувших комментарий

Link copied to clipboard
abstract suspend fun getEntryComments(entryID: Long, sorting: SortingType): List<Comment>

Получить комментарии к записи

Link copied to clipboard
abstract suspend fun getLevelComments(entryID: Long, sorting: SortingType): CommentsLevelLimited

Получить комментарии к записи с ограничением по веткам

Link copied to clipboard
abstract suspend fun getThreadComments(entryID: Long, commentID: Long): List<Comment>

Получить комментарии к записи с ограничением по веткам

Link copied to clipboard
abstract suspend fun postSeenComments(entryID: Long, count: Long)

Отправить количество увиденных комментариев

Properties

Link copied to clipboard
abstract val token: String