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-alpha03
PerTypeExportResult(
    credentialType: String,
    numSuccess: Int,
    numFailure: Int,
    numIgnored: Int
)

Public properties

credentialType

Added in 1.0.0-alpha03
val credentialTypeString

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

numFailure

Added in 1.0.0-alpha03
val numFailureInt

the number of credentials failed to store because they are invalid

numIgnored

Added in 1.0.0-alpha03
val numIgnoredInt

the number of credentials ignored because they require additional user input

numSuccess

Added in 1.0.0-alpha03
val numSuccessInt

the number of credentials successfully stored