class ActiveNetsuite::CampaignEventResponse

{urn:marketing_2013_2.lists.webservices.netsuite.com}CampaignEventResponse

name - SOAP::SOAPString
type - SOAP::SOAPString
dateSent - SOAP::SOAPDateTime
sent - SOAP::SOAPDouble
opened - SOAP::SOAPDouble
openedRatio - SOAP::SOAPDouble
clickedThru - SOAP::SOAPDouble
clickedThruRatio - SOAP::SOAPDouble
responded - SOAP::SOAPLong
respondedRatio - SOAP::SOAPDouble
unsubscribed - SOAP::SOAPLong
unsubscribedRatio - SOAP::SOAPDouble
bounced - SOAP::SOAPLong
bouncedRatio - SOAP::SOAPDouble

Attributes

bounced[RW]
bouncedRatio[RW]
clickedThru[RW]
clickedThruRatio[RW]
dateSent[RW]
name[RW]
opened[RW]
openedRatio[RW]
responded[RW]
respondedRatio[RW]
sent[RW]
type[RW]
unsubscribed[RW]
unsubscribedRatio[RW]

Public Class Methods

new(name = nil, type = nil, dateSent = nil, sent = nil, opened = nil, openedRatio = nil, clickedThru = nil, clickedThruRatio = nil, responded = nil, respondedRatio = nil, unsubscribed = nil, unsubscribedRatio = nil, bounced = nil, bouncedRatio = nil) click to toggle source
# File lib/activenetsuite/soap/default.rb, line 62653
def initialize(name = nil, type = nil, dateSent = nil, sent = nil, opened = nil, openedRatio = nil, clickedThru = nil, clickedThruRatio = nil, responded = nil, respondedRatio = nil, unsubscribed = nil, unsubscribedRatio = nil, bounced = nil, bouncedRatio = nil)
  @name = name
  @type = type
  @dateSent = dateSent
  @sent = sent
  @opened = opened
  @openedRatio = openedRatio
  @clickedThru = clickedThru
  @clickedThruRatio = clickedThruRatio
  @responded = responded
  @respondedRatio = respondedRatio
  @unsubscribed = unsubscribed
  @unsubscribedRatio = unsubscribedRatio
  @bounced = bounced
  @bouncedRatio = bouncedRatio
end