Class: MailAuth::Result
- Inherits:
-
Data
- Object
- Data
- MailAuth::Result
- Defined in:
- lib/mailauth/result.rb
Instance Attribute Summary collapse
-
#arc ⇒ Object
readonly
Returns the value of attribute arc.
-
#authentication_results ⇒ Object
readonly
Returns the value of attribute authentication_results.
-
#dkim ⇒ Object
readonly
Returns the value of attribute dkim.
-
#dmarc ⇒ Object
readonly
Returns the value of attribute dmarc.
-
#spf ⇒ Object
readonly
Returns the value of attribute spf.
Instance Method Summary collapse
-
#initialize(spf:, dkim:, dmarc:, authentication_results:, arc: nil) ⇒ Result
constructor
A new instance of Result.
Constructor Details
#initialize(spf:, dkim:, dmarc:, authentication_results:, arc: nil) ⇒ Result
Returns a new instance of Result.
96 97 98 |
# File 'lib/mailauth/result.rb', line 96 def initialize(spf:, dkim:, dmarc:, authentication_results:, arc: nil) super end |
Instance Attribute Details
#arc ⇒ Object (readonly)
Returns the value of attribute arc
95 96 97 |
# File 'lib/mailauth/result.rb', line 95 def arc @arc end |
#authentication_results ⇒ Object (readonly)
Returns the value of attribute authentication_results
95 96 97 |
# File 'lib/mailauth/result.rb', line 95 def authentication_results @authentication_results end |
#dkim ⇒ Object (readonly)
Returns the value of attribute dkim
95 96 97 |
# File 'lib/mailauth/result.rb', line 95 def dkim @dkim end |
#dmarc ⇒ Object (readonly)
Returns the value of attribute dmarc
95 96 97 |
# File 'lib/mailauth/result.rb', line 95 def dmarc @dmarc end |
#spf ⇒ Object (readonly)
Returns the value of attribute spf
95 96 97 |
# File 'lib/mailauth/result.rb', line 95 def spf @spf end |