Class: MythicBeasts::DNS::EmailAuth::CheckResult
- Inherits:
-
Struct
- Object
- Struct
- MythicBeasts::DNS::EmailAuth::CheckResult
- Defined in:
- lib/mythic_beasts/dns/email_auth.rb
Overview
Result of an individual check (SPF, DMARC, or DKIM)
Instance Attribute Summary collapse
-
#details ⇒ Object
Returns the value of attribute details.
-
#errors ⇒ Object
Returns the value of attribute errors.
-
#record ⇒ Object
Returns the value of attribute record.
-
#valid ⇒ Object
Returns the value of attribute valid.
-
#warnings ⇒ Object
Returns the value of attribute warnings.
Instance Method Summary collapse
-
#valid? ⇒ Boolean
True if this individual check passed.
Instance Attribute Details
#details ⇒ Object
Returns the value of attribute details
28 29 30 |
# File 'lib/mythic_beasts/dns/email_auth.rb', line 28 def details @details end |
#errors ⇒ Object
Returns the value of attribute errors
28 29 30 |
# File 'lib/mythic_beasts/dns/email_auth.rb', line 28 def errors @errors end |
#record ⇒ Object
Returns the value of attribute record
28 29 30 |
# File 'lib/mythic_beasts/dns/email_auth.rb', line 28 def record @record end |
#valid ⇒ Object
Returns the value of attribute valid
28 29 30 |
# File 'lib/mythic_beasts/dns/email_auth.rb', line 28 def valid @valid end |
#warnings ⇒ Object
Returns the value of attribute warnings
28 29 30 |
# File 'lib/mythic_beasts/dns/email_auth.rb', line 28 def warnings @warnings end |
Instance Method Details
#valid? ⇒ Boolean
Returns true if this individual check passed.
30 31 32 |
# File 'lib/mythic_beasts/dns/email_auth.rb', line 30 def valid? valid end |