import { VerifyRequest } from './VerifyRequest.js'; import './Response/VerifyRequestResponse.js'; /** * Represents an error response for a Verify operation with additional * error-related properties. */ 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; }; export type { VerifyError };