StatusView

data class StatusView(val uri: AtUri? = null, val cid: Cid? = null, val status: String, val record: JsonContent, val embed: StatusViewEmbedUnion? = null, val labels: List<Label>? = null, val expiresAt: Timestamp? = null, val isActive: Boolean? = null, val isDisabled: Boolean? = null)

Parameters

status

The status for the account.

embed

An optional embed associated with the status.

expiresAt

The date when this status will expire. The application might choose to no longer return the status after expiration.

isActive

True if the status is not expired, false if it is expired. Only present if expiration was set.

isDisabled

True if the user's go-live access has been disabled by a moderator, false otherwise.

Constructors

Link copied to clipboard
constructor(uri: AtUri? = null, cid: Cid? = null, status: String, record: JsonContent, embed: StatusViewEmbedUnion? = null, labels: List<Label>? = null, expiresAt: Timestamp? = null, isActive: Boolean? = null, isDisabled: Boolean? = null)

Properties

Link copied to clipboard
val cid: Cid?
Link copied to clipboard

An optional embed associated with the status.

Link copied to clipboard

The date when this status will expire. The application might choose to no longer return the status after expiration.

Link copied to clipboard

True if the status is not expired, false if it is expired. Only present if expiration was set.

Link copied to clipboard

True if the user's go-live access has been disabled by a moderator, false otherwise.

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

The status for the account.

Link copied to clipboard
val uri: AtUri?