Class: CampaignParameters

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

Overview

http://mxmaster.net/campaign/0.1CampaignParameters

tag - ArrayTag
mailfrom - SOAP::SOAPString
mailfrom_friendly - SOAP::SOAPString
replyto - SOAP::SOAPString
replyto_filtered - SOAP::SOAPBoolean

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(tag = nil, mailfrom = nil, mailfrom_friendly = nil, replyto = nil, replyto_filtered = nil) ⇒ CampaignParameters

Returns a new instance of CampaignParameters.



47
48
49
50
51
52
53
# File 'lib/default.rb', line 47

def initialize(tag = nil, mailfrom = nil, mailfrom_friendly = nil, replyto = nil, replyto_filtered = nil)
  @tag = tag
  @mailfrom = mailfrom
  @mailfrom_friendly = mailfrom_friendly
  @replyto = replyto
  @replyto_filtered = replyto_filtered
end

Instance Attribute Details

#mailfromObject

Returns the value of attribute mailfrom.



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

def mailfrom
  @mailfrom
end

#mailfrom_friendlyObject

Returns the value of attribute mailfrom_friendly.



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

def mailfrom_friendly
  @mailfrom_friendly
end

#replytoObject

Returns the value of attribute replyto.



44
45
46
# File 'lib/default.rb', line 44

def replyto
  @replyto
end

#replyto_filteredObject

Returns the value of attribute replyto_filtered.



45
46
47
# File 'lib/default.rb', line 45

def replyto_filtered
  @replyto_filtered
end

#tagObject

Returns the value of attribute tag.



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

def tag
  @tag
end