@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.
15 lines • 412 B
TypeScript
import { CheckStatus } from '../enums';
/**
* Represents an error that occurred during the verification control process.
*/
export type VerifyControlError = {
/**
* The status of the verification control.
*/
status: CheckStatus;
/**
* The error message associated with the verification control error.
*/
errorText: string;
};
//# sourceMappingURL=VerifyControlError.d.ts.map