class ActiveNetsuite::CampaignEmail

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

internalId - SOAP::SOAPString
campaignGroup - ActiveNetsuite::RecordRef
template - ActiveNetsuite::RecordRef
description - SOAP::SOAPString
subscription - ActiveNetsuite::RecordRef
channel - ActiveNetsuite::RecordRef
cost - SOAP::SOAPDouble
status - ActiveNetsuite::CampaignCampaignEmailStatus
dateScheduled - SOAP::SOAPDateTime
promoCode - ActiveNetsuite::RecordRef
customFieldList - ActiveNetsuite::CustomFieldList

Attributes

campaignGroup[RW]
channel[RW]
cost[RW]
customFieldList[RW]
dateScheduled[RW]
description[RW]
internalId[RW]
promoCode[RW]
status[RW]
subscription[RW]
template[RW]

Public Class Methods

new(internalId = nil, campaignGroup = nil, template = nil, description = nil, subscription = nil, channel = nil, cost = nil, status = nil, dateScheduled = nil, promoCode = nil, customFieldList = nil) click to toggle source
# File lib/activenetsuite/soap/default.rb, line 62452
def initialize(internalId = nil, campaignGroup = nil, template = nil, description = nil, subscription = nil, channel = nil, cost = nil, status = nil, dateScheduled = nil, promoCode = nil, customFieldList = nil)
  @internalId = internalId
  @campaignGroup = campaignGroup
  @template = template
  @description = description
  @subscription = subscription
  @channel = channel
  @cost = cost
  @status = status
  @dateScheduled = dateScheduled
  @promoCode = promoCode
  @customFieldList = customFieldList
end