EventPresentmentData
data class EventPresentmentData(val requesterName: String?, val requesterCertChain: X509CertChain?, val trustMetadata: TrustMetadata?, val requestedDocuments: List<EventPresentmentDataDocument>)
High-level data involved in a presentment event.
This data structure is designed to work for any credential type so the UI can show a simple overview. More detailed data is available in each of the Event-derived classes which include this data structure.
Constructors
Link copied to clipboard
constructor(requesterName: String?, requesterCertChain: X509CertChain?, trustMetadata: TrustMetadata?, requestedDocuments: List<EventPresentmentDataDocument>)
Properties
Link copied to clipboard
list of requested documents and claims.
Link copied to clipboard
the certificate chain of the requester if available.
Link copied to clipboard
the name of the requester, if available.
Link copied to clipboard
a TrustMetadata or null.