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
Returns a new instance of SubscriberBounce.
463 464 465 466 467 |
# File 'lib/campaign_monitor.rb', line 463 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.
461 462 463 |
# File 'lib/campaign_monitor.rb', line 461 def bounce_type @bounce_type end |
#email_address ⇒ Object (readonly)
Returns the value of attribute email_address.
461 462 463 |
# File 'lib/campaign_monitor.rb', line 461 def email_address @email_address end |
#list_id ⇒ Object (readonly)
Returns the value of attribute list_id.
461 462 463 |
# File 'lib/campaign_monitor.rb', line 461 def list_id @list_id end |