import { VerifyRequest } from './VerifyRequest.mjs';
import './Response/VerifyRequestResponse.mjs';

/**
 * 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 };
