storeCredentialMetadata

open override fun storeCredentialMetadata(name: String, linkSecretName: String, json: String)(source)

Stores the metadata associated with a credential request.

Parameters

name

the unique name used to retrieve the stored metadata.

linkSecretName

The link secret name as String.

json

The json string.


open override fun storeCredentialMetadata(name: String, metadata: CredentialRequestMeta)(source)

Deprecated (with error)

This method has been deprecated and should no longer be used.

Replace with

storeCredentialMetadata(name, linkSecretName, json)

Stores the metadata associated with a credential request.

Parameters

name

the unique name used to retrieve the stored metadata.

metadata

The metadata to store. It must be an instance of CredentialRequestMeta.

See also

(name, linkSecretName, json) for the replacement method that should be used.