UNPKG

@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 (14 loc) 350 B
/** * Enum representing commands for controlling Verify requests. */ declare enum Command { /** * Command to request cancellation of the verification process. */ CANCEL = "cancel", /** * Command to trigger the next verification event (if any). */ TRIGGER_NEXT_EVENT = "trigger_next_event" } export { Command };