Subscribe Repos Account
data class SubscribeReposAccount(val seq: Long, val did: Did, val time: Timestamp, val active: Boolean, val status: SubscribeReposStatus? = null)
Represents a change to an account's status on a host (eg, PDS or Relay). The semantics of this event are that the status is at the host which emitted the event, not necessarily that at the currently active PDS. Eg, a Relay takedown would emit a takedown with active=false, even if the PDS is still active.
Parameters
active
Indicates that the account has a repository which can be fetched from the host that emitted this event.
status
If active=false, this optional field indicates a reason for why the account is not active.
Constructors
Link copied to clipboard
constructor(seq: Long, did: Did, time: Timestamp, active: Boolean, status: SubscribeReposStatus? = null)