UpdateTrustedIssuerStatusListsResult

@Serializable
data class UpdateTrustedIssuerStatusListsResult(val success: Boolean, val nextUpdate: Instant?, val failedLists: Map<String, Set<String>>?)

The result type of MobileCredentialVerifier.updateTrustedIssuerStatusLists(). To keep the status lists updated, it is recommend to call MobileCredentialVerifier.updateTrustedIssuerStatusLists() before nextUpdate is reached.

Constructors

Link copied to clipboard
constructor(success: Boolean, nextUpdate: Instant?, failedLists: Map<String, Set<String>>?)

Properties

Link copied to clipboard
val failedLists: Map<String, Set<String>>?

The status lists that failed to update, keyed by trusted issuer certificate id.

Link copied to clipboard
val nextUpdate: Instant?

Next update date, recommended date before which to update status lists with MobileCredentialVerifier.updateTrustedIssuerStatusLists().

Link copied to clipboard
val success: Boolean

Indicates if the update was performed successfully.