@vonage/verify
Version:
Verify API provides a choice of routes for sending a code to a user. You can use this to confirm a user's contact information, as a second factor when authenticating users, or for step-up authentication.
16 lines • 513 B
TypeScript
import { VerificationParameters } from './VerificationParams';
/**
* Represents parameters for a PSD2 (Payment Services Directive 2)
* verification request.
*/
export type PSD2Parameters = Omit<VerificationParameters, 'brand' | 'senderId' | 'pinCode'> & {
/**
* The payee's name or identifier for the payment confirmation.
*/
payee: string;
/**
* The decimal amount of the payment to be confirmed, in Euros.
*/
amount: number;
};
//# sourceMappingURL=PSD2Parameters.d.ts.map