Class: Postal::Lmapi::TopicStruct

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

Overview

http://tempuri.org/ns1.xsdTopicStruct

topicName - SOAP::SOAPString
topicDescription - SOAP::SOAPString
siteName - SOAP::SOAPString
hiddenTopic - SOAP::SOAPBoolean

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(topicName = nil, topicDescription = nil, siteName = nil, hiddenTopic = nil) ⇒ TopicStruct

Returns a new instance of TopicStruct.



912
913
914
915
916
917
# File 'lib/postal/lmapi/lmapi.rb', line 912

def initialize(topicName = nil, topicDescription = nil, siteName = nil, hiddenTopic = nil)
  @topicName = topicName
  @topicDescription = topicDescription
  @siteName = siteName
  @hiddenTopic = hiddenTopic
end

Instance Attribute Details

#hiddenTopicObject

Returns the value of attribute hiddenTopic.



910
911
912
# File 'lib/postal/lmapi/lmapi.rb', line 910

def hiddenTopic
  @hiddenTopic
end

#siteNameObject

Returns the value of attribute siteName.



909
910
911
# File 'lib/postal/lmapi/lmapi.rb', line 909

def siteName
  @siteName
end

#topicDescriptionObject

Returns the value of attribute topicDescription.



908
909
910
# File 'lib/postal/lmapi/lmapi.rb', line 908

def topicDescription
  @topicDescription
end

#topicNameObject

Returns the value of attribute topicName.



907
908
909
# File 'lib/postal/lmapi/lmapi.rb', line 907

def topicName
  @topicName
end