import { VerifyCheckResponse } from './Response/VerifyCheckResponse.js'; import '../enums/CheckStatus.js'; /** * Represents a verification check result as part of a Verify search operation. */ 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; }; export type { VerifySearchCheck };