Class: CampaignMonitor::SubscriberBounce

Inherits:
Object
  • Object
show all
Defined in:
lib/campaign_monitor.rb

Overview

Encapsulates

Instance Attribute Summary collapse

Instance Method Summary collapse

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_typeObject (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_addressObject (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_idObject (readonly)

Returns the value of attribute list_id.



193
194
195
# File 'lib/campaign_monitor.rb', line 193

def list_id
  @list_id
end