Class: Postal::Lmapi::SiteStruct

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

Overview

http://tempuri.org/ns1.xsdSiteStruct

siteID - SOAP::SOAPInt
siteName - SOAP::SOAPString
siteDescription - SOAP::SOAPString
hostName - SOAP::SOAPString
webInterfaceURL - SOAP::SOAPString

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(siteID = nil, siteName = nil, siteDescription = nil, hostName = nil, webInterfaceURL = nil) ⇒ SiteStruct

Returns a new instance of SiteStruct.



933
934
935
936
937
938
939
# File 'lib/postal/lmapi/lmapi.rb', line 933

def initialize(siteID = nil, siteName = nil, siteDescription = nil, hostName = nil, webInterfaceURL = nil)
  @siteID = siteID
  @siteName = siteName
  @siteDescription = siteDescription
  @hostName = hostName
  @webInterfaceURL = webInterfaceURL
end

Instance Attribute Details

#hostNameObject

Returns the value of attribute hostName.



930
931
932
# File 'lib/postal/lmapi/lmapi.rb', line 930

def hostName
  @hostName
end

#siteDescriptionObject

Returns the value of attribute siteDescription.



929
930
931
# File 'lib/postal/lmapi/lmapi.rb', line 929

def siteDescription
  @siteDescription
end

#siteIDObject

Returns the value of attribute siteID.



927
928
929
# File 'lib/postal/lmapi/lmapi.rb', line 927

def siteID
  @siteID
end

#siteNameObject

Returns the value of attribute siteName.



928
929
930
# File 'lib/postal/lmapi/lmapi.rb', line 928

def siteName
  @siteName
end

#webInterfaceURLObject

Returns the value of attribute webInterfaceURL.



931
932
933
# File 'lib/postal/lmapi/lmapi.rb', line 931

def webInterfaceURL
  @webInterfaceURL
end