Type alias RequestCredentialsSameDeviceOptions

RequestCredentialsSameDeviceOptions: {
    challenge?: string;
    credentialQuery: CredentialQuery[];
    mode: sameDevice;
    redirectUri: string;
    walletProviderId?: string;
}

Options for the same 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.

  • mode: sameDevice

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

  • redirectUri: string

    The URI to which the user will be redirected after the credential request is completed.

  • 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