@JsonClass(true) data class SentRequest : ConnectionRecord
When sending a request, we generate our Did and VerKey. We then wait for the response. After we receive it, we transition to the CONNECTED state.
<init> |
When sending a request, we generate our Did and VerKey. We then wait for the response. After we receive it, we transition to the CONNECTED state. SentRequest(id: String, alias: ConnectionAlias?, myDid: String, myVerKey: String, recipientKeys: List<String>, endpoint: AgentEndpoint) |
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 |
recipientKeys |
val recipientKeys: List<String> |