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.



979
980
981
982
983
984
# File 'lib/postal/lmapi/lmapi.rb', line 979

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.



974
975
976
# File 'lib/postal/lmapi/lmapi.rb', line 974

def adminID
  @adminID
end

#emailAddressObject

Returns the value of attribute emailAddress.



976
977
978
# File 'lib/postal/lmapi/lmapi.rb', line 976

def emailAddress
  @emailAddress
end

#nameObject

Returns the value of attribute name.



975
976
977
# File 'lib/postal/lmapi/lmapi.rb', line 975

def name
  @name
end

#passwordObject

Returns the value of attribute password.



977
978
979
# File 'lib/postal/lmapi/lmapi.rb', line 977

def password
  @password
end