@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.
18 lines (15 loc) • 411 B
text/typescript
import { CheckStatus } from '../enums/CheckStatus.mjs';
/**
* Represents an error that occurred during the verification control process.
*/
type VerifyControlError = {
/**
* The status of the verification control.
*/
status: CheckStatus;
/**
* The error message associated with the verification control error.
*/
errorText: string;
};
export type { VerifyControlError };