Class: Etapper::API::ExternalLoginRequest

Inherits:
Object
  • Object
show all
Defined in:
lib/etapper/api/service.rb

Overview

etapestryAPI/serviceExternalLoginRequest

applicationContext - SOAP::SOAPString
applicationName - SOAP::SOAPString
databaseId - SOAP::SOAPString
loginId - SOAP::SOAPString
password - SOAP::SOAPString

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(applicationContext = nil, applicationName = nil, databaseId = nil, loginId = nil, password = nil) ⇒ ExternalLoginRequest

Returns a new instance of ExternalLoginRequest.



1388
1389
1390
1391
1392
1393
1394
# File 'lib/etapper/api/service.rb', line 1388

def initialize(applicationContext = nil, applicationName = nil, databaseId = nil, loginId = nil, password = nil)
  @applicationContext = applicationContext
  @applicationName = applicationName
  @databaseId = databaseId
  @loginId = loginId
  @password = password
end

Instance Attribute Details

#applicationContextObject

Returns the value of attribute applicationContext.



1382
1383
1384
# File 'lib/etapper/api/service.rb', line 1382

def applicationContext
  @applicationContext
end

#applicationNameObject

Returns the value of attribute applicationName.



1383
1384
1385
# File 'lib/etapper/api/service.rb', line 1383

def applicationName
  @applicationName
end

#databaseIdObject

Returns the value of attribute databaseId.



1384
1385
1386
# File 'lib/etapper/api/service.rb', line 1384

def databaseId
  @databaseId
end

#loginIdObject

Returns the value of attribute loginId.



1385
1386
1387
# File 'lib/etapper/api/service.rb', line 1385

def loginId
  @loginId
end

#passwordObject

Returns the value of attribute password.



1386
1387
1388
# File 'lib/etapper/api/service.rb', line 1386

def password
  @password
end