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 481 B
import { VerifyCheckResponse } from './Response'; /** * Represents a verification check result as part of a Verify search operation. */ export type VerifySearchCheck = VerifyCheckResponse & { /** * The date and time this check was received in the format * 'YYYY-MM-DD HH:MM:SS'. */ dateReceived: string; /** * The IP address associated with this verification check. */ ipAddress: string; }; //# sourceMappingURL=VerifySearchCheck.d.ts.map