Class: CampaignMonitor::SubscriberBounce

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

Overview

Encapsulates

Instance Attribute Summary collapse

Instance Method Summary collapse

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

:nodoc:



5
6
7
# File 'lib/campaign_monitor/misc.rb', line 5

def bounce_type
  @bounce_type
end

#email_addressObject (readonly)

:nodoc:



5
6
7
# File 'lib/campaign_monitor/misc.rb', line 5

def email_address
  @email_address
end

#list_idObject (readonly)

:nodoc:



5
6
7
# File 'lib/campaign_monitor/misc.rb', line 5

def list_id
  @list_id
end