Type alias RequestCredentialsCrossDeviceDeviceOptions

RequestCredentialsCrossDeviceDeviceOptions: {
    challenge?: string;
    credentialQuery: CredentialQuery[];
    crossDeviceCallback: CrossDeviceCallback;
    mode: crossDevice;
    walletProviderId?: string;
}

Options for the cross device requestCredentials function

Type declaration

  • Optional challenge?: string

    An optional challenge string that is used to ensure the security and integrity of the credential request. If not provided, a challenge will be generated by default.

  • credentialQuery: CredentialQuery[]

    An array of CredentialQuery objects that specify the credentials to be requested.

  • crossDeviceCallback: CrossDeviceCallback

    The callback functions to be executed on success or failure of the credential request in cross device mode.

  • mode: crossDevice

    An optional mode in which the credentials are requested. Set to Mode.crossDevice for this type.

  • Optional walletProviderId?: string

    An optional identifier for wallet configuration. If not provided, the default wallet will be used. This parameter is defined as part of your MATTR VII tenant verifier configuration

Generated using TypeDoc