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.

20 lines 550 B
import { VerifyRequest } from './VerifyRequest'; /** * Represents an error response for a Verify operation with additional * error-related properties. */ export type VerifyError = VerifyRequest & { /** * The error text providing more information about the error. */ error_text: string; /** * The error text providing more information about the error */ errorText: string; /** * (Optional) The network associated with the error. */ network?: string; }; //# sourceMappingURL=VerifyError.d.ts.map