@JsonClass(true) data class SentResponse : ConnectionRecord
The connection is ready to use, but we wait until the first received message to confirm that the connection is actually established (e.g. the other party may not have received our connection response message, which means we will likely have to send it again).
<init> |
The connection is ready to use, but we wait until the first received message to confirm that the connection is actually established (e.g. the other party may not have received our connection response message, which means we will likely have to send it again). SentResponse(id: String, alias: ConnectionAlias?, myDid: String, myVerKey: String, 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 |
myDid |
val myDid: String |
myVerKey |
val myVerKey: String |
theirDid |
val theirDid: String |
theirVerKey |
val theirVerKey: String |
threadId |
val threadId: String |