@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.
14 lines • 457 B
TypeScript
import { VerifyControlResponse } from './VerifyControlResponse';
import { Command } from '../../enums';
/**
* Represents the response for cancelling a verification request.
*
* @deprecated Please use VerifyControlResponse instead
*/
export type VerifyCancelResponse = VerifyControlResponse & {
/**
* The command type for the response, which is "CANCEL".
*/
command: Command.CANCEL;
};
//# sourceMappingURL=VerifyCancelResponse.d.ts.map