CredentialQueryResult

data class CredentialQueryResult(val credentialSets: List<CredentialPresentmentSet>)

An object containing the result of executing a query against org.multipaz.document.DocumentStore.

This object contains all the combinations in which the query can be satisfied, not just a single one. For just a single solution, see CredentialSelection.

Constructors

Link copied to clipboard
constructor(credentialSets: List<CredentialPresentmentSet>)

Properties

Link copied to clipboard

A list of credential sets which can be presented. Contains at least one set but may contain more.

Functions

Link copied to clipboard

Gets all possible selections.

Link copied to clipboard
fun select(preselectedDocuments: List<Document>): CredentialSelection

Selects a particular combination of credentials to present.