package models type EmailVerifyResponse struct { Email string `json:"email"` Status string `json:"status"` Score int `json:"score"` Regexp bool `json:"regexp"` MXRecords bool `json:"mx_records"` MXServer string `json:"mx_server,omitempty"` SMTPServer bool `json:"smtp_server"` SMTPCheck bool `json:"smtp_check"` Disposable bool `json:"disposable"` Webmail bool `json:"webmail"` Block bool `json:"block"` Gibberish bool `json:"gibberish"` ErrorMessage string `json:"error_message,omitempty"` VerifiedAt string `json:"verified_at,omitempty"` ResponseTimeMs int `json:"response_time_ms"` Message string `json:"message,omitempty"` Error string `json:"error,omitempty"` }