MobileWalletCredentialRegistrationResult

data class MobileWalletCredentialRegistrationResult(val available: Boolean, val registeredEntryCount: Int, val reason: String? = null)

Outcome of synchronizing the platform registry with the current wallet credential metadata.

A result with available false means the platform projection is now out of date, not that the wallet operation which triggered the synchronization failed. Callers that care about the projection should surface the reason and retry MobileWalletCredentialRegistry.replace.

Constructors

Link copied to clipboard
constructor(available: Boolean, registeredEntryCount: Int, reason: String? = null)

Properties

Link copied to clipboard

Whether registration is available after the attempt.

Link copied to clipboard

Optional diagnostic when registration is unavailable.

Link copied to clipboard

Number of registered entries.