Class: Minfraud::Model::EmailDomainVisit
- Inherits:
-
Abstract
- Object
- Abstract
- Minfraud::Model::EmailDomainVisit
- Defined in:
- lib/minfraud/model/email_domain_visit.rb
Overview
Model containing information about an automated visit to the email domain.
Instance Attribute Summary collapse
-
#has_redirect ⇒ Boolean?
readonly
Whether the domain redirects to another URL.
-
#last_visited_on ⇒ String?
readonly
A date string (e.g. 2025-11-15) identifying the date the automated visit was completed.
-
#status ⇒ String?
readonly
The status of the domain.
Instance Attribute Details
#has_redirect ⇒ Boolean? (readonly)
Whether the domain redirects to another URL.
13 14 15 |
# File 'lib/minfraud/model/email_domain_visit.rb', line 13 def has_redirect @has_redirect end |
#last_visited_on ⇒ String? (readonly)
A date string (e.g. 2025-11-15) identifying the date the automated visit was completed. This is expressed using the ISO 8601 date format.
19 20 21 |
# File 'lib/minfraud/model/email_domain_visit.rb', line 19 def last_visited_on @last_visited_on end |
#status ⇒ String? (readonly)
The status of the domain. Possible values are:
-
live - The domain is operational and serving content.
-
dns_error - The domain has missing, expired, or misconfigured DNS.
-
network_error - The domain is offline or unreachable.
-
http_error - The domain is reachable, but has an application error.
-
parked - The domain is reachable and in a parked state.
-
pre_development - The domain is reachable and in a pre-development state.
31 32 33 |
# File 'lib/minfraud/model/email_domain_visit.rb', line 31 def status @status end |