Class: CampaignMonitor::SubscriberBounce
- Inherits:
-
Object
- Object
- CampaignMonitor::SubscriberBounce
- Defined in:
- lib/campaign_monitor.rb
Overview
Encapsulates
Instance Attribute Summary collapse
-
#bounce_type ⇒ Object
readonly
Returns the value of attribute bounce_type.
-
#email_address ⇒ Object
readonly
Returns the value of attribute email_address.
-
#list_id ⇒ Object
readonly
Returns the value of attribute list_id.
Instance Method Summary collapse
-
#initialize(email_address, list_id, bounce_type) ⇒ SubscriberBounce
constructor
A new instance of SubscriberBounce.
Constructor Details
#initialize(email_address, list_id, bounce_type) ⇒ SubscriberBounce
195 196 197 198 199 |
# File 'lib/campaign_monitor.rb', line 195 def initialize(email_address, list_id, bounce_type) @email_address = email_address @bounce_type = bounce_type @list_id = list_id end |
Instance Attribute Details
#bounce_type ⇒ Object (readonly)
Returns the value of attribute bounce_type.
193 194 195 |
# File 'lib/campaign_monitor.rb', line 193 def bounce_type @bounce_type end |
#email_address ⇒ Object (readonly)
Returns the value of attribute email_address.
193 194 195 |
# File 'lib/campaign_monitor.rb', line 193 def email_address @email_address end |
#list_id ⇒ Object (readonly)
Returns the value of attribute list_id.
193 194 195 |
# File 'lib/campaign_monitor.rb', line 193 def list_id @list_id end |