@JsonClass(true) data class ReceivedRequest : ConnectionRecord
After we receive a request (from our invitation), we are in this state. From the request, we extract their endpoint information. We must wait for user confirmation before continuing. We find the SentInvitation record via the connection key.
<init> |
After we receive a request (from our invitation), we are in this state. From the request, we extract their endpoint information. We must wait for user confirmation before continuing. We find the SentInvitation record via the connection key. ReceivedRequest(id: String, alias: ConnectionAlias?, theirDid: String, theirVerKey: String, endpoint: AgentEndpoint, threadId: String) |
alias |
val alias: ConnectionAlias? |
endpoint |
val endpoint: AgentEndpoint |
id |
is the ID of the connection val id: String |
theirDid |
val theirDid: String |
theirVerKey |
val theirVerKey: String |
threadId |
val threadId: String |