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

Returns a new instance of SubscriberBounce.



455
456
457
458
459
# File 'lib/campaign_monitor.rb', line 455

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.



453
454
455
# File 'lib/campaign_monitor.rb', line 453

def bounce_type
  @bounce_type
end

#email_addressObject (readonly)

Returns the value of attribute email_address.



453
454
455
# File 'lib/campaign_monitor.rb', line 453

def email_address
  @email_address
end

#list_idObject (readonly)

Returns the value of attribute list_id.



453
454
455
# File 'lib/campaign_monitor.rb', line 453

def list_id
  @list_id
end