class ImportCredentialsRequest


A request to import the provider's credentials, following the FIDO Credential exchange format

Summary

Public constructors

ImportCredentialsRequest(
    credentialTypes: Set<String>,
    knownExtensions: Set<String>
)

Public properties

Set<String>

the credential types that the requester supports.

Set<String>

the known extensions that the importer supports.

Public constructors

ImportCredentialsRequest

Added in 1.0.0-alpha04
ImportCredentialsRequest(
    credentialTypes: Set<String>,
    knownExtensions: Set<String>
)

Public properties

credentialTypes

Added in 1.0.0-alpha04
val credentialTypesSet<String>

the credential types that the requester supports. By default, this field will be used to filter which ExportEntry will be displayed. The values include, but not limited to, the constants in CredentialTypes. This cannot be empty. The exporter should return credentials that map to the requested types. Unknown values should be ignored.

knownExtensions

Added in 1.0.0-alpha04
val knownExtensionsSet<String>

the known extensions that the importer supports. The values include, but not limited to, the constants in KnownExtensions. This can be empty. The exporter should return extensions that map to the requested extensions. Unknown values should be ignored.