Context

@Serializable
data class Context(val ancestors: List<Status>, val descendants: List<Status>)

Represents the tree around a given status.

Used for reconstructing threads of statuses.

Constructors

Link copied to clipboard
constructor(ancestors: List<Status>, descendants: List<Status>)

Properties

Link copied to clipboard

Parent statuses in the thread.

Link copied to clipboard

Children statuses in the thread.