SubscribeReposIdentity

data class SubscribeReposIdentity(val seq: Long, val did: Did, val time: Timestamp, val handle: Handle? = null)

Represents a change to an account's identity. Could be an updated handle, signing key, or pds hosting endpoint. Serves as a prod to all downstream services to refresh their identity cache.

Parameters

handle

The current handle for the account, or 'handle.invalid' if validation fails. This field is optional, might have been validated or passed-through from an upstream source. Semantics and behaviors for PDS vs Relay may evolve in the future; see atproto specs for more details.

Constructors

Link copied to clipboard
constructor(seq: Long, did: Did, time: Timestamp, handle: Handle? = null)

Properties

Link copied to clipboard
val did: Did
Link copied to clipboard
val handle: Handle? = null

The current handle for the account, or 'handle.invalid' if validation fails. This field is optional, might have been validated or passed-through from an upstream source. Semantics and behaviors for PDS vs Relay may evolve in the future; see atproto specs for more details.

Link copied to clipboard
val seq: Long
Link copied to clipboard