Class: Postal::Lmapi::ServerAdminStruct

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

Overview

http://tempuri.org/ns1.xsdServerAdminStruct

adminID - SOAP::SOAPInt
name - SOAP::SOAPString
emailAddress - SOAP::SOAPString
password - SOAP::SOAPString

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(adminID = nil, name = nil, emailAddress = nil, password = nil) ⇒ ServerAdminStruct

Returns a new instance of ServerAdminStruct.



969
970
971
972
973
974
# File 'lib/postal/lmapi/lmapi.rb', line 969

def initialize(adminID = nil, name = nil, emailAddress = nil, password = nil)
  @adminID = adminID
  @name = name
  @emailAddress = emailAddress
  @password = password
end

Instance Attribute Details

#adminIDObject

Returns the value of attribute adminID.



964
965
966
# File 'lib/postal/lmapi/lmapi.rb', line 964

def adminID
  @adminID
end

#emailAddressObject

Returns the value of attribute emailAddress.



966
967
968
# File 'lib/postal/lmapi/lmapi.rb', line 966

def emailAddress
  @emailAddress
end

#nameObject

Returns the value of attribute name.



965
966
967
# File 'lib/postal/lmapi/lmapi.rb', line 965

def name
  @name
end

#passwordObject

Returns the value of attribute password.



967
968
969
# File 'lib/postal/lmapi/lmapi.rb', line 967

def password
  @password
end