@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.
17 lines • 406 B
TypeScript
/**
* Represents the response of an unblock request.
*/
/**
* Represents the response of an unblock request.
*/
export type UblockRequestResponse = {
/**
* The network associated with the unblock request.
*/
network: string;
/**
* The date and time until which the unblock is valid.
*/
unblocked_until: string;
};
//# sourceMappingURL=UnblockRequestResponse.d.ts.map