Class: CampaignMonitor::SubscriberBounce
- Inherits:
-
Object
- Object
- CampaignMonitor::SubscriberBounce
- Defined in:
- lib/campaign_monitor/misc.rb
Overview
Encapsulates
Instance Attribute Summary collapse
-
#bounce_type ⇒ Object
readonly
:nodoc:.
-
#email_address ⇒ Object
readonly
:nodoc:.
-
#list_id ⇒ Object
readonly
:nodoc:.
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
Returns a new instance of SubscriberBounce.
7 8 9 10 11 |
# File 'lib/campaign_monitor/misc.rb', line 7 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)
:nodoc:
5 6 7 |
# File 'lib/campaign_monitor/misc.rb', line 5 def bounce_type @bounce_type end |
#email_address ⇒ Object (readonly)
:nodoc:
5 6 7 |
# File 'lib/campaign_monitor/misc.rb', line 5 def email_address @email_address end |
#list_id ⇒ Object (readonly)
:nodoc:
5 6 7 |
# File 'lib/campaign_monitor/misc.rb', line 5 def list_id @list_id end |