Class: Mailtrap::TrackingOptOut
- Inherits:
-
Struct
- Object
- Struct
- Mailtrap::TrackingOptOut
- Defined in:
- lib/mailtrap/tracking_opt_out.rb
Overview
Data Transfer Object for Tracking Opt-out
Instance Attribute Summary collapse
-
#created_at ⇒ String
readonly
The creation timestamp.
-
#domain_name ⇒ String?
readonly
Sending domain the tracking opt-out applies to.
-
#email ⇒ String
readonly
The email address opted out of tracking.
-
#id ⇒ String
readonly
The tracking opt-out UUID.
Instance Attribute Details
#created_at ⇒ String (readonly)
The creation timestamp
10 11 12 |
# File 'lib/mailtrap/tracking_opt_out.rb', line 10 def created_at @created_at end |
#domain_name ⇒ String? (readonly)
Sending domain the tracking opt-out applies to
10 11 12 |
# File 'lib/mailtrap/tracking_opt_out.rb', line 10 def domain_name @domain_name end |
#email ⇒ String (readonly)
The email address opted out of tracking
10 11 12 |
# File 'lib/mailtrap/tracking_opt_out.rb', line 10 def email @email end |
#id ⇒ String (readonly)
The tracking opt-out UUID
10 11 12 |
# File 'lib/mailtrap/tracking_opt_out.rb', line 10 def id @id end |