listUsers

fun Mutes.listUsers(    cursor: Long? = null,     includeEntities: Boolean? = null,     skipStatus: Boolean? = null,     vararg options: Option): CursorJsonObjectApiAction<CursorUsers, User>

Returns an array of user objects the authenticating user has muted.

Twitter API reference

Receiver

Mutes endpoint instance.

Return

CursorJsonObjectApiAction for CursorUsers model.

Parameters

cursor

Causes the list of IDs to be broken into pages of no more than 5000 IDs at a time. The number of IDs returned is not guaranteed to be 5000 as suspended users are filtered out. If no cursor is provided, a value of -1 will be assumed, which is the first "page." The response from the API will include a previous_cursor and next_cursor to allow paging back and forth. See Using cursors to navigate collections for more information.

includeEntities

The entities node will not be included when set to false.

skipStatus

When set to either true, t or 1 statuses will not be included in the returned user objects.

options

Optional. Custom parameters of this request.


val Mutes.listUsers: CursorJsonObjectApiAction<CursorUsers, User>

Shorthand property to Mutes.listUsers.

See also