InfoEvent

data class InfoEvent(val presentationRequest: PresentationRequest, val result: CompletableDeferred<Unit>) : PresentationEvent

First event received after a presentation process is started. Contains a PresentationRequest object and a CompletableDeferred result which has to be completed for the flow to continue. See com.youniqx.walletsdk.presentation.Presentation.presentWith for a usage example.

Constructors

Link copied to clipboard
constructor(presentationRequest: PresentationRequest, result: CompletableDeferred<Unit>)

Properties

Link copied to clipboard

The requested credentials and information about the relying party.

Link copied to clipboard
val result: CompletableDeferred<Unit>

A CompletableDeferred result which has to be completed for the flow to continue.