@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.
19 lines (17 loc) • 387 B
TypeScript
/**
* Represents the response of an unblock request.
*/
/**
* Represents the response of an unblock request.
*/
type UblockRequestResponse = {
/**
* The network associated with the unblock request.
*/
network: string;
/**
* The date and time until which the unblock is valid.
*/
unblocked_until: string;
};
export type { UblockRequestResponse };