Class: Campaigning::CampaignSummary

Inherits:
Object
  • Object
show all
Defined in:
lib/campaigning/soap/generated/default.rb

Overview

/CampaignSummary

recipients - SOAP::SOAPInt
totalOpened - SOAP::SOAPInt
clicks - SOAP::SOAPInt
unsubscribed - SOAP::SOAPInt
bounced - SOAP::SOAPInt

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(recipients = nil, totalOpened = nil, clicks = nil, unsubscribed = nil, bounced = nil) ⇒ CampaignSummary

Returns a new instance of CampaignSummary.



62
63
64
65
66
67
68
# File 'lib/campaigning/soap/generated/default.rb', line 62

def initialize(recipients = nil, totalOpened = nil, clicks = nil, unsubscribed = nil, bounced = nil)
  @recipients = recipients
  @totalOpened = totalOpened
  @clicks = clicks
  @unsubscribed = unsubscribed
  @bounced = bounced
end

Instance Attribute Details

#bouncedObject

Returns the value of attribute bounced.



60
61
62
# File 'lib/campaigning/soap/generated/default.rb', line 60

def bounced
  @bounced
end

#clicksObject

Returns the value of attribute clicks.



58
59
60
# File 'lib/campaigning/soap/generated/default.rb', line 58

def clicks
  @clicks
end

#recipientsObject

Returns the value of attribute recipients.



56
57
58
# File 'lib/campaigning/soap/generated/default.rb', line 56

def recipients
  @recipients
end

#totalOpenedObject

Returns the value of attribute totalOpened.



57
58
59
# File 'lib/campaigning/soap/generated/default.rb', line 57

def totalOpened
  @totalOpened
end

#unsubscribedObject

Returns the value of attribute unsubscribed.



59
60
61
# File 'lib/campaigning/soap/generated/default.rb', line 59

def unsubscribed
  @unsubscribed
end