@JsonClass(true) data class TheirDidInformation
Represents the identity information JSON from Did.storeTheirDid. Note that the verification key is optional in the JSON, but considering their documentation "optional in case of adding a new DID, and DID is cryptonym: did == verkey", just make it explicit that did = verkey, as it is already mandatory when updating an existing DID.
<init> |
Represents the identity information JSON from Did.storeTheirDid. Note that the verification key is optional in the JSON, but considering their documentation "optional in case of adding a new DID, and DID is cryptonym: did == verkey", just make it explicit that did = verkey, as it is already mandatory when updating an existing DID. TheirDidInformation(did: String, verKey: String) |
did |
val did: String |
verKey |
val verKey: String |