Class: CampaignMonitor::SubscriberOpen
- Inherits:
-
Object
- Object
- CampaignMonitor::SubscriberOpen
- Defined in:
- lib/campaign_monitor.rb
Overview
Encapsulates
Instance Attribute Summary collapse
-
#email_address ⇒ Object
readonly
Returns the value of attribute email_address.
-
#list_id ⇒ Object
readonly
Returns the value of attribute list_id.
-
#opens ⇒ Object
readonly
Returns the value of attribute opens.
Instance Method Summary collapse
-
#initialize(email_address, list_id, opens) ⇒ SubscriberOpen
constructor
A new instance of SubscriberOpen.
Constructor Details
#initialize(email_address, list_id, opens) ⇒ SubscriberOpen
474 475 476 477 478 |
# File 'lib/campaign_monitor.rb', line 474 def initialize(email_address, list_id, opens) @email_address = email_address @list_id = list_id @opens = opens end |
Instance Attribute Details
#email_address ⇒ Object (readonly)
Returns the value of attribute email_address.
472 473 474 |
# File 'lib/campaign_monitor.rb', line 472 def email_address @email_address end |
#list_id ⇒ Object (readonly)
Returns the value of attribute list_id.
472 473 474 |
# File 'lib/campaign_monitor.rb', line 472 def list_id @list_id end |
#opens ⇒ Object (readonly)
Returns the value of attribute opens.
472 473 474 |
# File 'lib/campaign_monitor.rb', line 472 def opens @opens end |