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.



45
46
47
48
49
50
51
# File 'lib/campaigning/soap/generated/default.rb', line 45

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.



43
44
45
# File 'lib/campaigning/soap/generated/default.rb', line 43

def bounced
  @bounced
end

#clicksObject

Returns the value of attribute clicks.



41
42
43
# File 'lib/campaigning/soap/generated/default.rb', line 41

def clicks
  @clicks
end

#recipientsObject

Returns the value of attribute recipients.



39
40
41
# File 'lib/campaigning/soap/generated/default.rb', line 39

def recipients
  @recipients
end

#totalOpenedObject

Returns the value of attribute totalOpened.



40
41
42
# File 'lib/campaigning/soap/generated/default.rb', line 40

def totalOpened
  @totalOpened
end

#unsubscribedObject

Returns the value of attribute unsubscribed.



42
43
44
# File 'lib/campaigning/soap/generated/default.rb', line 42

def unsubscribed
  @unsubscribed
end