class PerTypeExportResult


A result of exporting the credentials to the provider

Summary

Public constructors

PerTypeExportResult(
    credentialType: String,
    numSuccess: Int,
    numFailure: Int,
    numIgnored: Int
)

Public properties

String

type of credential.

Int

the number of credentials failed to store because they are invalid

Int

the number of credentials ignored because they require additional user input

Int

the number of credentials successfully stored

Public constructors

PerTypeExportResult

Added in 1.0.0-beta01
PerTypeExportResult(
    credentialType: String,
    numSuccess: Int,
    numFailure: Int,
    numIgnored: Int
)

Public properties

credentialType

Added in 1.0.0-beta01
val credentialType: String

type of credential. Includes, but not limited to, CredentialTypes

numFailure

Added in 1.0.0-beta01
val numFailure: Int

the number of credentials failed to store because they are invalid

numIgnored

Added in 1.0.0-beta01
val numIgnored: Int

the number of credentials ignored because they require additional user input

numSuccess

Added in 1.0.0-beta01
val numSuccess: Int

the number of credentials successfully stored